kramed
kramed copied to clipboard
A markdown (kramdown compatible) parser and compiler. Built for speed. (Fork of marked)
Classes are not being parsed from Kramdown: This following kramdown: ``` > text content {: .class1 .class2 } ``` should output: ``` html text content ``` but instead is outputting:...
The following markdown text doesn't work: ``` 1. this is a - this is b1 | Name | age| |---- |----| | Tom | 16 | - this is b2...
no activity for 8 months but some of the open issues seemed to hint development would continue & address current limitations. Can we expect development to continue or is this...
I change default renderer to hexo-render-kramed and then change some render rules in `node_modules\kramed\lib\rules\inline.js` : ``` // escape: /^\\([\\`*{}\[\]()#$+\-.!_>])/, escape: /^\\([`*\[\]()#$+\-.!_>])/, // em: /^\b_((?:__|[\s\S])+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/, em: /^\*((?:\*\*|[\s\S])+?)\*(?!\*)/, ``` and I found...
see: https://github.com/GitbookIO/gitbook/issues/1062
The table is followed by "\n" ```js var kramed = require('kramed'); console.log(kramed(` | Name | Description | Profile | | ---- | ----------- | ------- | | format | Specifies...
According to https://github.com/GitbookIO/kramed/commit/e5604a6d5c48433afaebc4d9886ecbf07550c6c5#diff-c4b68449111e40246a8891a59fb8b417R30 Kramed only support one-line footnotes, but according to [MultiMarkDown specification](https://github.com/fletcher/MultiMarkdown/blob/master/Documentation/MultiMarkdown%20User%27s%20Guide.md#footnotes) in what Kramed footnotes are based, it lacks support for multiline footnotes. I think it would be...
This PR adds support for escaped pipes in table. Pipes are replaced by HTML entities.
https://gitbook.zendesk.com/agent/tickets/2776