sindresorhus/refined-github





The issue has been closed
Parse Markdown feature descriptions #3687
FloEdelmann posted onGitHub
Originally posted by @fregante in https://github.com/sindresorhus/refined-github/pull/3678#discussion_r510589853:
I'd like to see the most lightweight Markdown parser being run directly to the description text to store HTML so the entire
parseDescription
function can be dropped.Parser example: Holixus/nano-markdown bundlephobia.com/result?p=nano-markdown@1.2.1
I've done a little comparison between multiple lightweight Markdown parsers, and I don't think we can directly use any of them đ
Features they should support:
- code span with single backtick:
`` ` ``
- code span with a backticked word:
`` `bla` ``
- inline URLs:
https://example.org
or<https://example.org>
- don't escape HTML tags:
**bold** or <b>bold</b>
Parser | Size | 1. single backtick | 2. backticked word | 3. inline URLs | 4. don't escape HTML |
---|---|---|---|---|---|
nano-markdown | 2kB | :x: | :x: | :x: | :heavy_check_mark: |
snarkdown | 2kB | :x: | :x: | :x: | :heavy_check_mark: |
downa | 1.9kB | :x: | :x: | :x: | :heavy_check_mark: |
md.js | 2.7kB | :x: | :x: | :x: | :heavy_check_mark: |
tinydown | 4kB | :heavy_check_mark: | :heavy_check_mark: | :x: | :x: |
drawdown | 1.5kB <sup>1)</sup> | :heavy_check_mark: | :x: | :x: | :x: |
mmd.js | 0.8kB <sup>2)</sup> | :x: | :x: | :x: | :x: |
Notes:
1) not distributed via npm, 2.8kB unminified, about 1.5kB minified 2) not distributed via npm, 1.0kB unminified, 0.8kB minified