-
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
-
18
-
19
-
20
-
21
-
22
-
23
-
24
-
25
-
26
-
27
-
28
-
29
-
30
-
31
-
32
-
33
-
34
-
35
-
36
-
37
-
38
-
39
-
40
-
41
-
42
-
43
-
44
-
45
-
46
-
47
-
48
-
49
-
50
-
51
-
52
-
53
-
54
-
55
-
56
-
57
-
58
-
59
-
60
-
61
-
62
-
63
-
64
-
65
-
66
-
67
-
68
-
69
-
70
-
71
-
72
-
73
-
74
-
75
-
76
-
77
-
78
-
79
-
80
-
81
-
82
-
83
-
84
-
85
-
86
-
87
-
88
-
89
-
90
-
91
-
92
-
93
-
94
-
95
-
96
-
97
-
98
-
99
-
100
-
101
-
102
-
103
-
104
-
105
-
106
-
107
-
108
-
109
-
110
-
111
-
112
-
113
-
114
-
115
-
116
-
117
-
118
-
119
-
120
-
121
-
122
-
123
-
124
-
125
-
126
-
127
-
128
// SPDX-FileCopyrightText: 2024 Shota FUJI <pockawoooh@gmail.com>
//
// SPDX-License-Identifier: Apache-2.0
import { assertEquals } from "../../deps/deno.land/std/assert/mod.ts";
import { micromark } from "../../deps/npm/micromark/mod.ts";
import {
ofmComment,
ofmCommentHtml,
type OfmCommentHtmlOptions,
} from "./mod.ts";
function f(markdown: string, opts?: OfmCommentHtmlOptions): string {
return micromark(markdown, {
extensions: [ofmComment()],
htmlExtensions: [ofmCommentHtml(opts)],
});
}
Deno.test("Should parse inline comment", () => {
assertEquals(
f("This is an %%inline%% comment."),
`<p>This is an comment.</p>`,
);
});
Deno.test("Should not treat non-terminated inline comment", () => {
assertEquals(
f("This is an %%inline comment."),
`<p>This is an %%inline comment.</p>`,
);
});
Deno.test("Should abort if it finds line-endings inside inline comment", () => {
assertEquals(
f("This is an %%inline\n comment.%%"),
`<p>This is an %%inline\ncomment.%%</p>`,
);
});
Deno.test("Should keep as HTML comment", () => {
assertEquals(
f("This is an %%inline%% comment.", {
preserveAsHtmlComment: true,
}),
`<p>This is an <!--inline--> comment.</p>`,
);
});
Deno.test("Should ignore non-sequential percent sign", () => {
assertEquals(
f("This is an %%%inline%% comment.", {
preserveAsHtmlComment: true,
}),
`<p>This is an <!--%inline--> comment.</p>`,
);
});
Deno.test("Should handle escape", () => {
assertEquals(
f("This is an \\%%inline%% comment%%.", {
preserveAsHtmlComment: true,
}),
`<p>This is an %%inline<!-- comment-->.</p>`,
);
});
Deno.test("Should parse block comment", () => {
const code = `
%%
This is a block comment.
Block comments can span multiple lines.
%%
`.trim();
assertEquals(
f(code, { preserveAsHtmlComment: true }),
`<!--
This is a block comment.
Block comments can span multiple lines.
-->`,
);
});
Deno.test("Should not parse contents inside block comment", () => {
const code = `
%%
**This is a block comment**.
Block comments can span multiple lines.
%%
`.trim();
assertEquals(
f(code, { preserveAsHtmlComment: true }),
`<!--
**This is a block comment**.
Block comments can span multiple lines.
-->`,
);
});
Deno.test("Should parse block comment in a document", () => {
const code = `
This is a paragraph.
%%
This is a block comment.
Block comments can span multiple lines.
%%
This is a paragraph too.
`.trim();
assertEquals(
f(code, { preserveAsHtmlComment: true }),
`<p>This is a paragraph.</p>
<!--
This is a block comment.
Block comments can span multiple lines.
-->
<p>This is a paragraph too.</p>`,
);
});