php-markdown
php-markdown copied to clipboard
Parser for Markdown and Markdown Extra derived from the original Markdown.pl by John Gruber.
Based on the existing use of `predef_urls` to set URLs for predefined blocks such as `ref` in the docs examples, in my project we came across a need to be...
Adding support for table attributes.
Implements the proposed syntax for blockquote footers from #131
Added support for {#id .class} attributes to full tables, header rows and data rows.
Added support for {#id .class} attributes to tables when attributes are appended to the header line.
1. Support multiple [`type`](http://developers.whatwg.org/grouping-content.html#attr-ol-type)s of ordered lists, like upper/lowercase letters and roman numerals in addition to the existing support for decimal markers. So, ``` a) Alphabet list item 1 b)...
Hi. It might work like this: ``` markdown | First Header | Second Header | | ------------- | ------------- | | Content Cell | Content Cell | | Content Cell...
1. Same the GithubMarkdown, when we typing enter, it's preview start new line. But with **michelf/php-markdown**, we need type twice enter to start new line. Please help me ! Note:...
Hi, I was testing how to [prevent HTML code](https://michelf.ca/blog/2007/php-markdown-no-markup/) in generated output, together with @wunderfeyd. Looks like there's a double encoding when using `no_markup = true` and `no_entities = true`....
Is there a special reason why paragraphs cannot define classes? This would be pretty nice to define layouts, even in markdown. /cc @kburton Referencing you because just just implemented it...