sindresorhus/refined-github

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:

  1. code span with single backtick: `` ` ``
  2. code span with a backticked word: `` `bla` ``
  3. inline URLs: https://example.org or <https://example.org>
  4. 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


I don’t think that the first column is correct, Snarkdown does support back ticks, it’s in the first example.

Also what happens when “html is not supported”? Support means leaving it untouched; does it mean it escapes it instead? Snarkdown specifically says “it doesn’t sanitize HTML” either, which appears to be what we want.

posted by fregante over 4 years ago

Double backticks aren’t on my priority list by the way; if they’re supported without a mess, it’s good; if not, no problem, we can use <code> in the readme.

posted by fregante over 4 years ago

Actually the module isn’t meant to be packaged, I wrongly mentioned the need to be small. What matters is speed, since we don’t want it to slow down the build further.

Any decent CommonMark library should do.

posted by fregante over 4 years ago

Snarkdown does support back ticks, it’s in the first example

All modules do support simple lorem `ipsum` dolor code spans. The first column is specifically about code spans with single backtick (`` ` ``), the second one about code spans with a backticked word (`` `bla` ``). I didn't think about just being able to use <code> in the readme though.

Also what happens when “html is not supported”? Support means leaving it untouched; does it mean it escapes it instead?

:heavy_check_mark: = HTML is untouched :x: = HTML is escaped (e.g. <b>bold</b> → &lt;b&gt;bold&lt;/b&gt;)

Actually the module isn’t meant to be packaged, I wrongly mentioned the need to be small. What matters is speed, since we don’t want it to slow down the build further.

Any decent CommonMark library should do.

I think that makes finding a suitable library much easier, though it's difficult to judge the speed. I'll try to find one :)

posted by FloEdelmann over 4 years ago

To judge the speed: use the library and run the build again. If it takes ~the same time we’re good.

posted by fregante over 4 years ago

Fund this Issue

$0.00
Funded

Pull requests