Skip to content

Commit d30832e

Browse files
committed
feat: stream support
- closes #31 - closes #35 Signed-off-by: Lexus Drumgold <[email protected]>
1 parent fae10c3 commit d30832e

File tree

156 files changed

+3755
-2526
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

156 files changed

+3755
-2526
lines changed

.codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,6 @@ ignore:
9090

9191
profiling:
9292
critical_files_paths:
93-
- src/constructs/eof.ts
9493
- src/constructs/initialize.ts
9594
- src/lexer.ts
95+
- src/preprocess.ts

.dictionary.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ fbca
1313
ggshield
1414
gpgsign
1515
hmarr
16+
iife
1617
jchen
1718
kaisugi
1819
lcov
@@ -22,6 +23,8 @@ mlly
2223
nocheck
2324
nvmrc
2425
onreturn
26+
onsuccessfulcheck
27+
onsuccessfulconstruct
2528
pathe
2629
pkgs
2730
preid
@@ -33,3 +36,4 @@ vates
3336
vfile
3437
vitest
3538
yarnrc
39+
zwnj

.dprint.jsonc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
"CHANGELOG.md",
2525
"LICENSE.md",
2626
"RELEASE_NOTES.md",
27-
"yarn.lock"
27+
"yarn.lock",
28+
"__fixtures__/markdown/*.md"
2829
],
2930
"exec": {
3031
"commands": [

.markdownlintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
**/CHANGELOG.md
66
**/LICENSE.md
77
**/RELEASE_NOTES.md
8+
__fixtures__/markdown/*.md

__fixtures__/hello.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

__fixtures__/inline-tag.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

__fixtures__/markdown/code-fenced.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
```
2+
fenced code
3+
```
4+
5+
```js
6+
fenced code with a language
7+
```
8+
9+
```js line=1
10+
fenced code with meta
11+
```
12+
13+
~~~
14+
fenced code with tildes
15+
~~~
16+
17+
```not fenced code```
18+
19+
~~~fenced code~~~
20+
asd
21+
~~~
22+
23+
```
24+
25+
asd
26+
```
27+
28+
```
29+
asd
30+
31+
```
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
indented code
2+
3+
4+
more indented code
5+
Not indented code
6+
7+
more
8+
indent
9+
10+
Not code.
11+
12+
tabs
13+
and mixed with spaces
14+
extra spaces
15+
16+
Not code.
17+
18+
a tab

__fixtures__/markdown/code-text.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
A couple of code examples: `a`, ` b`, `c `, ` d `, ` e
2+
`, ` f
3+
`, `g
4+
`, `
5+
h`.
6+
7+
And: `alpha bravo charlie
8+
delta echo`.

__fixtures__/markdown/empty.md

Whitespace-only changes.

0 commit comments

Comments
 (0)