markdown-js
markdown-js copied to clipboard
A Markdown parser for javascript
It'd be really cool if some support for tables could be added, like [GitHub's Markdown supports](https://help.github.com/articles/github-flavored-markdown/#tables).
This is almost the same change @marijnh submitted 2 years ago in evilstreak/markdown-js#34, but with a few differences: - tests for @marijnh's HTML block commit - support self-closing HTML tags...
If we want to keep whitespace, for indentation, shouldn't the parser output back-ticked code blocks to something like this? ` console.log("I am code"); ` Currently, instead of ``, it outputs...
Example: input: **** output: nothing Markdown should be valid only after enter text! Is not it? Now: input: **** output: ****
# Code blocks behind list do not work? ## do not work Example ``` * item1 * item2 C++ Java PHP ``` ## work normal Example ``` * item1 *...
Hi, I would like to make some changes to the markdown tree and then generate the resulting Html as well as the updated Markdown. So far I haven't found a...
This works great to produce a link to a YouTube video, but if I want to produce YouTubes embed tag into my html, so basically an iFrame widget, how would...
This ``` [4] Telediario 15:00 de TVE1 de [24 de desembre de 2015](http://www.rtve.es/alacarta/videos/telediario/telediario-15-horas-24-12-15/3421858/) ``` works but that ``` [4] [Telediario 15:00 de TVE1 de 24 de desembre de 2015](http://www.rtve.es/alacarta/videos/telediario/telediario-15-horas-24-12-15/3421858/) ```...
Reason: The npm package.json script object is becoming a defacto task runner (e.g. Angular2). So having the ability to run the markdown converter whenever a source markdown file changes will...
This commit changes the link parser to handle it's text parsing in a new `strong_state`/`em_state` context, as well as ensuring that it will only parse the text in between the...