php-markdown icon indicating copy to clipboard operation
php-markdown copied to clipboard

Parser for Markdown and Markdown Extra derived from the original Markdown.pl by John Gruber.

Results 111 php-markdown issues
Sort by recently updated
recently updated
newest added

Is there a way to define, in some sort of setting, that say each paragraph should have class "para__graph"? The point is that I really want it on every single...

Might be an issue, might not, but haven't seen any mentioning of it here: I've run the PHPCompatibility Codesniffer and have this found the usage of i.e. `$this->doExtraAttributes("h$level", $dummy =&...

following md generates the right markup with ol and lis ``` 1. a 2. b 3. c ``` but if you add some text before it doesnt generate ol any...

Hi, I wrote a comparison (http://open-time.net/post/2014/01/09/Markdown-vs-Wiki-Dotclear, in french) between the MD extra syntax and the syntax of Dotclear wiki (french blogging software). It seems that the MD extra is near...

Are there any plans to implement math functions?

Markdown Extra supports ids and classes for headers. I suggest to have a similar feature for list items. I have a use case where I set anchors for list items,...

I'd like to implement configurable header elements. Inside the class I would introduce a default level `0`. This would result in all `#` headers to be transformed into ``. Setting...

This has to be covered somewhere in this library's docs or issues but I'm wondering if there is an option to allow urls minus the protocol/scheme, i.e., `http://`, to get...

Currently, using a tag will result in the tag being incorrectly wrapped in <p> tags. I added "figure" to the list on line 1729 ($block_tags_re) and it now works. (I...

Hi, I'm having an issue with the following code : ``` html ![Some text](/img/9197736417_c89f685c9d.jpg "Some text")Some text ``` Will be transform as : ``` html Some text ``` So we...