-
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
-
129
-
130
-
131
-
132
-
133
-
134
-
135
-
136
-
137
-
138
-
139
-
140
-
141
-
142
-
143
-
144
-
145
-
146
-
147
-
148
-
149
-
150
-
151
-
152
-
153
-
154
-
155
-
156
-
157
-
158
-
159
-
160
-
161
-
162
-
163
-
164
-
165
-
166
-
167
-
168
-
169
-
170
-
171
-
172
-
173
-
174
-
175
-
176
-
177
-
178
-
179
-
180
-
181
-
182
-
183
-
184
-
185
-
186
-
187
-
188
-
189
-
190
-
191
-
192
-
193
-
194
-
195
-
196
-
197
-
198
-
199
-
200
-
201
-
202
-
203
-
204
-
205
-
206
-
207
-
208
-
209
-
210
-
211
-
212
-
213
-
214
-
215
-
216
-
217
-
218
-
219
-
220
-
221
-
222
-
223
-
224
-
225
-
226
-
227
-
228
-
229
-
230
-
231
-
232
-
233
-
234
-
235
-
236
-
237
-
238
-
239
-
240
-
241
-
242
-
243
-
244
-
245
-
246
-
247
-
248
-
249
-
250
-
251
-
252
-
253
-
254
-
255
-
256
-
257
-
258
-
259
-
260
-
261
-
262
-
263
-
264
-
265
-
266
-
267
-
268
-
269
-
270
-
271
-
272
-
273
-
274
-
275
-
276
-
277
-
278
-
279
-
280
-
281
-
282
-
283
-
284
-
285
-
286
-
287
-
288
-
289
-
290
-
291
-
292
-
293
-
294
-
295
-
296
-
297
-
298
-
299
-
300
-
301
-
302
-
303
-
304
-
305
-
306
-
307
-
308
-
309
-
310
-
311
-
312
-
313
-
314
-
315
-
316
-
317
-
318
-
319
-
320
-
321
-
322
-
323
-
324
-
325
-
326
-
327
-
328
-
329
-
330
-
331
-
332
-
333
-
334
-
335
-
336
-
337
-
338
-
339
-
340
-
341
-
342
-
343
-
344
-
345
-
346
-
347
-
348
-
349
-
350
-
351
-
352
-
353
-
354
-
355
-
356
-
357
-
358
-
359
-
360
-
361
-
362
-
363
-
364
-
365
-
366
-
367
-
368
-
369
-
370
-
371
-
372
-
373
-
374
-
375
-
376
-
377
-
378
-
379
-
380
-
381
-
382
-
383
-
384
-
385
-
386
-
387
-
388
-
389
-
390
-
391
-
392
-
393
-
394
-
395
-
396
-
397
-
398
-
399
-
400
-
401
-
402
-
403
-
404
-
405
-
406
-
407
-
408
// SPDX-FileCopyrightText: 2024 Shota FUJI <pockawoooh@gmail.com>
//
// SPDX-License-Identifier: Apache-2.0
import type * as Mdast from "../../deps/esm.sh/mdast/types.ts";
import type { Extension } from "../../deps/esm.sh/mdast-util-from-markdown/mod.ts";
import { SKIP, visit } from "../../deps/esm.sh/unist-util-visit/mod.ts";
import type { State } from "../../deps/esm.sh/mdast-util-to-hast/mod.ts";
import type * as Hast from "../../deps/esm.sh/hast/types.ts";
export interface OfmCallout extends Mdast.Node {
type: "ofmCallout";
calloutType: string;
isFoldable: boolean;
defaultExpanded?: boolean;
children: (OfmCalloutTitle | Mdast.BlockContent | Mdast.DefinitionContent)[];
}
export interface OfmCalloutTitle extends Mdast.Node {
type: "ofmCalloutTitle";
children: Mdast.PhrasingContent[];
}
const PATTERN_REGEXP = /\[!(\S+)]([-+]?)(\s(.*))?$/;
function splitNodeAtFirstNewline<Node extends Mdast.Nodes>(
node: Node,
): (readonly [Node, Node]) | null {
if (node.type === "text") {
const idx = node.value.indexOf("\n");
if (idx < 0) {
return null;
}
const left: Mdast.Text = {
type: "text",
data: node.data,
position: node.position && {
start: node.position.start,
end: {
line: node.position.start.line,
column: node.position.start.column + idx,
},
},
value: node.value.slice(0, idx),
};
const right: Mdast.Text = {
type: "text",
data: node.data,
position: node.position && {
start: {
line: node.position.start.line + 1,
column: 0,
},
end: node.position.end,
},
value: node.value.slice(idx + 1, node.value.length),
};
return [
// @ts-expect-error: TypeScript cannot narrow return type when its generic.
// https://github.com/microsoft/TypeScript/issues/23132
// https://github.com/microsoft/TypeScript/issues/33912
left,
// @ts-expect-error: TypeScript cannot narrow return type when its generic.
// https://github.com/microsoft/TypeScript/issues/23132
// https://github.com/microsoft/TypeScript/issues/33912
right,
];
}
if (!("children" in node)) {
return null;
}
for (let i = 0, l = node.children.length; i < l; i++) {
const result = splitNodeAtFirstNewline(node.children[i]);
if (!result) {
continue;
}
return [
{
...node,
children: [
...node.children.slice(0, i),
result[0],
],
},
{
...node,
children: [
result[1],
...node.children.slice(i + 1),
],
},
];
}
return null;
}
function replace(node: Mdast.Blockquote): OfmCallout | null {
if (!node.children.length) {
return null;
}
const [head, ...rest] = node.children;
if (head.type !== "paragraph" || !head.children.length) {
return null;
}
const splitted = splitNodeAtFirstNewline(head) ?? [head, null];
const [titleHead, ...titleRest] = splitted[0].children;
if (titleHead.type !== "text") {
return null;
}
const match = titleHead.value.match(PATTERN_REGEXP);
if (!match) {
return null;
}
const [, type, expandSymbol, , titleTextRest] = match;
const titleChildren: Mdast.PhrasingContent[] = [
titleTextRest
? {
type: "text",
value: (titleTextRest || ""),
} satisfies Mdast.Text
: null,
...titleRest,
].filter((t): t is NonNullable<typeof t> => !!t);
return {
type: "ofmCallout",
calloutType: type || "",
isFoldable: !!expandSymbol,
defaultExpanded: typeof expandSymbol === "string"
? expandSymbol === "+"
: undefined,
children: [
...(titleChildren.length > 0
? [{
type: "ofmCalloutTitle",
children: titleChildren,
}] as const
: []),
...(splitted[1] ? [splitted[1]] : []),
...rest,
],
};
}
/**
* Extension for Callout extension from Obsidian Flavored Markdown.
* This adds "ofmCallout" node.
*
* ```markdown
* > [!info]
* > Callout block
*
* > [!check]- title
* > Default collapsed callout block
* ```
*/
export function ofmCalloutFromMarkdown(): Extension {
return {
transforms: [
(root) => {
visit(
root,
(node) => node.type === "blockquote",
(node, index, parent) => {
if (!parent || typeof index !== "number") {
// Root node, unreachable
return;
}
const replaced = replace(node as Mdast.Blockquote);
if (!replaced) {
return SKIP;
}
// @ts-expect-error: unist-related libraries heavily relies on ambient module declarations,
// which Deno does not support. APIs also don't accept type parameters.
parent.children[index] = replaced;
},
);
},
],
};
}
function normalizeType(typeIdent: string) {
switch (typeIdent.toLowerCase()) {
case "abstract":
case "summary":
case "tldr":
return "abstract";
case "info":
return "info";
case "todo":
return "todo";
case "tip":
case "hint":
case "important":
return "tip";
case "success":
case "check":
case "done":
return "success";
case "question":
case "help":
case "faq":
return "question";
case "warning":
case "caution":
case "attention":
return "warning";
case "failure":
case "fail":
case "missing":
return "failure";
case "danger":
case "error":
return "danger";
case "bug":
return "bug";
case "example":
return "example";
case "quote":
case "cite":
return "quote";
default:
return "note";
}
}
export type CalloutType = ReturnType<typeof normalizeType>;
export interface OfmCalloutToHastHandlersOptions {
generateTitleId?(count: number): string;
generateIcon?(type: CalloutType): Hast.ElementContent | null;
}
function defaultTitleId(count: number): string {
return `_ofm_callout__${count}`;
}
export function parseOfmCalloutNode(
state: State,
node: OfmCallout,
): {
title: Hast.ElementContent[];
body: Hast.ElementContent[];
type: CalloutType;
} {
const titleTextTitleCased = node.calloutType.slice(0, 1).toUpperCase() +
node.calloutType.slice(1).toLowerCase();
const type = normalizeType(node.calloutType);
let mdastTitle: OfmCalloutTitle | null = null;
const mdastBody: (Mdast.BlockContent | Mdast.DefinitionContent)[] = [];
for (const child of node.children) {
if (child.type === "ofmCalloutTitle") {
mdastTitle = child;
} else {
mdastBody.push(child);
}
}
const title: Hast.ElementContent[] = mdastTitle
? state.all({
type: "paragraph",
children: mdastTitle.children,
})
: [{
type: "text",
value: titleTextTitleCased,
}];
// @ts-expect-error: unist-related libraries heavily relies on ambient module declarations,
// which Deno does not support. APIs also don't accept type parameters.
return { title, body: state.all({ ...node, children: mdastBody }), type };
}
export function ofmCalloutToHastHandlers(
{ generateTitleId = defaultTitleId, generateIcon }:
OfmCalloutToHastHandlersOptions = {},
) {
let counter = 0;
return {
ofmCallout(state: State, node: OfmCallout): Hast.Nodes {
const titleTextTitleCased = node.calloutType.slice(0, 1).toUpperCase() +
node.calloutType.slice(1).toLowerCase();
const type = normalizeType(node.calloutType);
const titleId = generateTitleId(counter++);
const icon = generateIcon?.(type);
let mdastTitle: OfmCalloutTitle | null = null;
const mdastBody: (Mdast.BlockContent | Mdast.DefinitionContent)[] = [];
for (const child of node.children) {
if (child.type === "ofmCalloutTitle") {
mdastTitle = child;
} else {
mdastBody.push(child);
}
}
const title: Hast.ElementContent[] = mdastTitle
? state.all({
type: "paragraph",
children: mdastTitle.children,
})
: [{
type: "text",
value: titleTextTitleCased,
}];
if (node.isFoldable) {
return {
type: "element",
tagName: "aside",
properties: {
"data-ofm-callout-type": type,
"aria-labelledby": titleId,
},
children: [
{
type: "element",
tagName: "details",
properties: {
open: node.defaultExpanded ? true : undefined,
},
children: [
{
type: "element",
tagName: "summary",
properties: {
id: titleId,
},
children: [
...(icon ? [icon] : []),
...title,
],
},
{
type: "element",
tagName: "div",
properties: {},
children: state.all(
// @ts-expect-error: unist-related libraries heavily relies on ambient module declarations,
// which Deno does not support. APIs also don't accept type parameters.
{ ...node, children: mdastBody } as OfmCallout,
),
},
],
},
],
};
}
return {
type: "element",
tagName: "aside",
properties: {
"data-ofm-callout-type": type,
"aria-labelledby": titleId,
},
children: [
{
type: "element",
tagName: "p",
properties: {
id: titleId,
},
children: [
...(icon ? [icon] : []),
...title,
],
},
{
type: "element",
tagName: "div",
properties: {},
// @ts-expect-error: unist-related libraries heavily relies on ambient module declarations,
// which Deno does not support. APIs also don't accept type parameters.
children: state.all(node),
},
],
};
},
};
}