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 add css classes to html attributes automatically? I want to add a class `.table` to each table element automatically. Something like this? ```php $filter =...

As the preeminent implementation for PHP, does this follow the newly-published spec for Markdown (and its test suite)? http://standardmarkdown.com

With `no_markup` and `no_entities` set to true, angle brackets inside of bold/italic blocks get double encoded. Sample input: ~~~ ____ __ ~~~ Actual output: ~~~ <testing> <testing> <testing> ~~~ Expected...

Hello, I have a blog I made with PicoCMS. I write content with Markdown extra and often use footnotes. I'm looking for a way to place footnotes at the end...

On my site, user input is encoded (htmlspecialchars) before it gets parsed. However, this means that the automatic links `` do not work. Please fix, thanks.

I'd like to be able to do something like this `![img](){data-src=url}`, but it doesn't work. I can get custom attributes to work in every other case. Just not if the...

Hi, It may be useful in some applications to be able to disable certain types of markdown elements from being rendered, for example I might not want headings to be...

MarkdownExtra doesn't seem to track the indentation level correctly when you use a fenced code block within a list item. Here's a Gist that illustrates the problem: https://gist.github.com/okdana/75a3bf7f2218b7d67adeed03f81b53fd The output...

Input: The following code. ``` This is a test. 1. List Item One 2. List Item Two This is another test. - List Item One - List Item Two -...

In regards to post #169, I would like to report an issue that occurs when using Html `` alongside the new `$hard_wrap` option, which otherwise works nicely within it's logical...