-
-
Notifications
You must be signed in to change notification settings - Fork 307
/
Copy pathremark-code-titles.js
68 lines (57 loc) · 1.93 KB
/
remark-code-titles.js
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
import { visit } from "unist-util-visit";
import { text } from "mdast-builder";
const hexdig = `[0-9a-fA-F]`;
const char = `(?:\\\\["\\/\\\\brfnt]|\\\\u${hexdig}{4}|[^"\\\\])`;
const jsonStringPattern = new RegExp(`^"${char}*"`);
const remarkNumberHeadings = () => (tree) => {
visit(tree, "code", (codeNode, index, parent) => {
// Support title without a language
if (codeNode.lang && codeNode.lang[0] === "\"") {
codeNode.meta = `${codeNode.lang} ${codeNode.meta}`;
codeNode.lang = null;
}
let title = "";
const titleClasses = ["remark-code-title"];
const language = codeNode.lang ?? "";
if (language.toLowerCase() === "jsonschema") {
codeNode.lang = "json";
title = "JSON Schema";
titleClasses.push("code-title-jsonschema");
} else if (language.toLowerCase() === "json") {
title = "JSON";
titleClasses.push("code-title-json");
} else if (language.toLowerCase() === "jsonc") {
title = "JSON";
titleClasses.push("code-title-json");
} else {
titleClasses.push("code-title-unknown");
}
if ("meta" in codeNode) {
const match = jsonStringPattern.exec(codeNode.meta);
if (match) {
const customTitle = JSON.parse(match[0]);
title = title ? `${title} - ${customTitle}` : customTitle;
codeNode.meta = codeNode.meta.slice(match[0].length).trim();
}
}
const containerChildren = [];
if (title) {
const titleNode = div([text(title)], { className: titleClasses });
containerChildren.push(titleNode);
}
containerChildren.push(codeNode);
const wrappedCodeNode = div(containerChildren, { className: ["remark-code-container"] });
parent.children.splice(index, 1, wrappedCodeNode);
});
};
const div = (children, properties) => {
return {
type: "container",
children,
data: {
hName: "div",
hProperties: properties
}
};
};
export default remarkNumberHeadings;