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

I received this Deprecation notice when running unit tests for `sculpin` under PHP 8.1: ``` PHP Deprecated: preg_match_all(): Passing null to parameter #2 ($subject) of type string is deprecated in...

I've been running phpstan level 6, and see this code ```php if (isset($this->footnotes[$node_id])) { $num =& $this->footnotes_numbers[$node_id]; if (!isset($num)) { ``` I'm wondering what the purpose of =& is. Also,...

From my understanding it is currently impossible to let the Markdown library generate class attributes in the html output. While it would be possible to include those after the text...

It would be nice to have inline footnotes, with automatic numbering. For example, in the JS world, the [`markdown-it-footnote`](https://github.com/markdown-it/markdown-it-footnote#markdown-it-footnote) plugin does it. ### Syntax ```markdown That's some text with a...

Would be nice to have an option to make all links `rel="nofollow"`.

In particular, this means that people using this package via composer do not download the test files, only the implementation. If desired, I can also add other files not needed...

This complies with HTML5 standards and let browser plan for the area to reserve to images before they load. If provided, it allows us to enable native browser lazy loading...

GitHub automatically creates links from standard URLs... but php-markdown does not do it unless the link is placed between ''

It's possible to implement strike?