Live data from Hacker News

Markdown to HTML Parser for PHP

github.com

1–3 of 3 posts

Re: Markdown to HTML Parser for PHP

#2
Hello World! I created a new tool to convert markdowns to html using PHP.

> Why is this tool different from PHP ParseDown or any other markdown libraries?

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.

> So, what is so special about this tool?

I added more functionalities like converting markdown files to HTML files directly and also converting markdown contents to HTML files?

use FastVolt\Helper\Markdown;

$markdown = Markdown::new();

print $markdown -> setContent( "## Hello World" ) -> toHtml(); // Hello World

?>

So Easy and Expressive!!

> GITHUB REPO: https://github.com/fastvolt/markdown (Please star and contribute to improve the project :) )