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 107 php-markdown issues
Sort by recently updated
recently updated
newest added

I know there is a debate on whether class / ids should be allowed for each element / block. Without entering this debate, I'd suggest allowing special attributes for terms...

Textile compatibility mode is no longer supported with the Lib package, although it's still doable by creating a separate file containing a textile class and loading PHP Markdown. Perhaps there...

To help with IDE integration, provide an easy way to generate API documentation, and generally conform better with how many other PHP projects are commented, I'd like to propose that...

Markdown+extra is already much better than regular markdown when it comes to interacting with LaTeX syntax (a la MathJax) but I'm wondering if anything can be done about the following....

I have found a discrepancy in the way that Markdown and MarkdownExtra parse a particular chunk of markdown: ``` php $my_text = ' > Hello world, how are you? >...

Unified Block

I encountered an issue while writing Markdown documents in Chinese. That is, if there is no spaces between two emphases, e.g., un_be__lie_vable, Markdown tends to ignore them as emphases. The...

When making a list in which the only contents of the list is fenced code blocks there seem to be a few minor bugs. First this does not work (But...

Fenced code blocks inside a blockquote works fine until another fenced code block is included in the document anywhere after the blockquote. For example: ``` > ~~~ foo ~~~ ~~~...

Unified Block

Do you have an article or example of how this would be used in a webstack? perhaps on a index.php file?

This article, [local link targets must be focusable to prevent accessibility issues](https://www.stefanjudis.com/today-i-learned/relative-html-links-focus-issues/), suggests that focus is lost when local link anchors are not focusable, such as headings with ids. This...