parsedown
parsedown copied to clipboard
Better Markdown Parser in PHP
## Description Parsedown splits a code block in multiple parts when having a markdown file like the following: ````md * Source ```bash $ ls # Comment in code $ ls...
Issue to track whether we want Parsedown to be able to tell when it should continue a block or start a new one based on precedence. This is a separate...
## Description Parsedown places the h1 element inside the list element when having a markdown file like the following: ```md * element1 * element2 # Troubleshooting ``` The issue is...
Add a new option to define the minimal Header level to be used e.g. if the option `->minHeaderLevel(3)` a header defined with a single hash `# heading` will be parsed...
Is it possible to add emojis support. : https://github.com/markdown-templates/markdown-emojis so that markdown emojiis can be converted to html i think it will be easy to implement , like download all...
2.0.0
Big PR to track everything for planned changes towards 2.0.0—please leave reviews here (preferably by adding a review to the relevant code site), or make PRs targeting the `2.0.x` branch...
I haven't found a way at the moment to do this. What i would like is to be able to pass a rule to the class to not render headers....
My current usage: ``` $markdown = file_get_contents($filepath); new Parsedown(); ?> echo Parsedown::instance() ->setBreaksEnabled(true) # enables automatic line breaks ->text($markdown); ``` My file: ``` Blah blah blah Blah. :format(jpeg):mode_rgb():quality(90)/discogs-images/R-19242826-1624712011-5555.jpeg.jpg When I try the following code...