markdown
markdown copied to clipboard
A super fast, highly extensible markdown parser for PHP
The following markdown table without body at the end of the markdown text is not detected and will be rendered as paragraph: ``` "| Tables | Are | Cool |\n|...
Minor issue, but for Hacktoberfest, I thought I would correct it. @inheritdocs is a typo. Should be @inheritDoc See [Inheritance](https://docs.phpdoc.org/latest/guides/inheritance.html)
It's not ideal that this relatively small dependency dictates `opcache.save_comments=1` at the web server config level. I think you could refactor the `parseXyz()` methods and `@marker` comments that are organized...
My markdown has something like `**One** **Two** **Three**` It is rendered as: `OneTwoThree` There are no spaces between the tags
Carsten, This is a great package. Been using it for a while on my [PHPFUI](http://phpfui.com/?n=cebe%5Cmarkdown&c=Markdown) site which easily documents any PHP code. I was wondering if you would be up...
I am looking to take a loosely formatted Markdown text (inconsistent line breaks, spacing, etc.) and beautify (or pretty print) the contents of it. If not, I would like to...
# Issue There is a reflected and/or stored xss vulnerability (depending on how the markdown is parsed from user input or from a user uploaded file) from a crafted use...
Fix #169
Added so that GFM has support for creating line breaks by prefixing the line feed with a backslash. I didn't add any `render*` function for the line breaks, since newlines...
https://github.com/blog/1375-task-lists-in-gfm-issues-pulls-comments Not sure how exactly as there is an interface needed to work with the information externally.
The GFM spec specifies that to make a line break, [a backslash can be used](https://github.github.com/gfm/#hard-line-breaks) so it is more visible. It also better because some editors automatically remove trailing whitespace....