Hello World!
I created a new tool to convert markdowns to html using PHP.<p>> Why is this tool different from PHP ParseDown or any other markdown libraries?<p>Well, I created this tool as a wrapper of parseDown initially to fully support version php 8.x, since the parseDown library was originally built for PHP 5 and the library codebase hasn't been updated yet till now.<p>> So, what is so special about this tool?<p>I added more functionalities like converting markdown files to HTML files directly and also converting markdown contents to HTML files?<p><?php<p>use FastVolt\Helper\Markdown;<p>$markdown = Markdown::new();<p>print $markdown
-> setContent( "## Hello World" )
-> toHtml(); // <h2>Hello World</h2><p>?><p>So Easy and Expressive!!<p>> GITHUB REPO: <a href="https://github.com/fastvolt/markdown">https://github.com/fastvolt/markdown</a> (Please star and contribute to improve the project :) )