-
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
// 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";
export interface OfmCallout extends Mdast.Node {
type: "ofmCallout";
calloutType: string;
isFoldable: boolean;
defaultExpanded?: boolean;
title: Mdast.PhrasingContent[];
children: (Mdast.BlockContent | Mdast.DefinitionContent)[];
}
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;
return {
type: "ofmCallout",
calloutType: type || "",
isFoldable: !!expandSymbol,
defaultExpanded: typeof expandSymbol === "string"
? expandSymbol === "+"
: undefined,
title: [
titleTextRest
? {
type: "text",
value: (titleTextRest || ""),
} satisfies Mdast.Text
: null,
...titleRest,
].filter((t): t is NonNullable<typeof t> => !!t),
children: [
...(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 ambiend module declarations,
// which Deno does not support. APIs also don't accept type parameters.
parent.children[index] = replaced;
},
);
},
],
};
}