File tree Expand file tree Collapse file tree 4 files changed +6
-19
lines changed Expand file tree Collapse file tree 4 files changed +6
-19
lines changed Original file line number Diff line number Diff line change 1
1
// Jargon
2
- API
3
2
CLI
4
3
XSS
5
4
attacher
6
5
bundler
7
- debounced
8
6
esbuild
9
- hacky
10
- linter
11
- math
12
- middleware
13
7
minified
14
8
minify
15
9
minifying
16
10
performant
17
- pluggable
11
+ plugable
18
12
programmatically
19
13
readme
20
- stdin
21
- stdout
22
- stringifier
23
14
stringify
24
15
syntaxes
25
16
whitespace
@@ -29,25 +20,20 @@ BundlePhobia
29
20
CDN
30
21
CommonMark
31
22
DOM
32
- Deno
33
23
GFM
34
24
HSL
35
25
JSDoc
36
26
JSON
37
27
JSX
38
28
MDX
39
29
MacBook
40
- Node.js
41
30
Otander
42
31
Preact
43
- hast
44
32
mdast
45
33
nlcst
46
34
npm
47
35
rehype
48
- remark
49
36
retext
50
- unified
51
37
unist
52
38
vfile
53
39
xast
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ await remark()
88
88
89
89
Read more about [ ` unist-util-find ` ] [ unist-util-find ] in its readme.
90
90
91
- ` unist-util-find ` is rather basic and slow.
91
+ The package ` unist-util-find ` is rather basic and slow.
92
92
You likely want to [ traverse a tree] [ tree-traversal ]
93
93
with [ ` unist-util-visit ` ] [ unist-util-visit ]
94
94
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ Together with other tools and specifications they form the unified collective.
56
56
57
57
The unified collective spans like-minded organizations.
58
58
These organizations have the shared goal to innovate content processing.
59
- Seamless, interchangeable, and pluggable tooling is how that’s achieved.
59
+ Seamless, interchangeable, and plugable tooling is how that’s achieved.
60
60
61
61
Depending on what you want to do you reference different organizations.
62
62
So let’s start off with an introduction round.
Original file line number Diff line number Diff line change 35
35
36
36
### Tree transformations
37
37
38
- For this example we start out with markdown content and then transform to HTML.
39
- We need a markdown parser and an HTML stringifier (compiler) for that.
38
+ For this example we start out with markdown content and then turn it into HTML.
39
+ We need something to parse markdown and something to compile (stringify) HTML
40
+ for that.
40
41
The relevant projects are respectively [ ` remark-parse ` ] [ parse ] and
41
42
[ ` rehype-stringify ` ] [ stringify ] .
42
43
To transform between the two syntaxes we use [ ` remark-rehype ` ] [ remark-rehype ] .
You can’t perform that action at this time.
0 commit comments