parsedown icon indicating copy to clipboard operation
parsedown copied to clipboard

Better Markdown Parser in PHP

Results 169 parsedown issues
Sort by recently updated
recently updated
newest added

## 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...

bug

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...

bug

## 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...

bug

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...

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....

question

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. ![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo...

According to the parsedown doc https://michaelcurrin.github.io/dev-cheatsheets/cheatsheets/markdown/collapsible-items.html If i put parsedown code in a details tag surrounded by empty lines, the code should be parsed and be rendered as HTML. But...

Hello, I encounter a problem when I want to display an image that contain parenthesis in its url, like for example this one: https://img.discogs.com/xj70o40FRg3uGEEwjIcJOYTC0k0=/fit-in/600x592/filters:strip_icc():format(jpeg):mode_rgb():quality(90)/discogs-images/R-19242826-1624712011-5555.jpeg.jpg When I try the following code...

bug