-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
47 lines (42 loc) · 1.35 KB
/
index.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
"use strict";
const clearTitle = require("./src/clearTitle");
const getTitle = require("./src/getTitle");
const drawTemplate = require("./src/drawTemplate");
let separator = ":title=";
module.exports = (_ref, options)=> {
const markdownAST = _ref.markdownAST;
if (!options)
options = {};
if (markdownAST.type == 'root' && Array.isArray(markdownAST.children)) {
for (let i = 0; i < markdownAST.children.length; i++) {
if (markdownAST.children[i].type == "code" && markdownAST.children[i].lang) {
let title = getTitle(markdownAST.children[i].lang, separator);
markdownAST.children[i].lang = clearTitle(markdownAST.children[i].lang, separator);
if (title) {
let titleNode = {
type: "html",
value: drawTemplate(title, options.templateGenerator),
position: ""
};
markdownAST.children.splice(i, 0, titleNode)
i++
}
}
}
}
return markdownAST;
};
/*
margin-bottom: 0px;
position: relative;
top: 2.2rem;
left: 80%;
z-index: 2;
width: auto;
max-width: 20%;
background: blanchedalmond;
padding-left: 5px;
padding-right: 5px;
overflow: scroll;
display: flex;
*/