-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex-browser.js
51 lines (42 loc) · 1.18 KB
/
index-browser.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
import 'github-css'
import mdc from './index-node'
import Chart from 'chart.js'
import Cookies from 'js-cookie'
import 'markdown-it-latex/dist/index.css'
import 'markdown-it-icons/dist/index.css'
import 'markdown-it-highlight/dist/index.css'
import './index.css'
mdc.mermaid.loadPreferences(Cookies) // load mermaid preferences from Cookie
// below is code sample to load mermaid preference from memory
/*
mdc.mermaid.loadPreferences({
get: key => {
if (key === 'mermaid-theme') {
return 'forest'
} else if (key === 'gantt-axis-format') {
return '%Y/%m/%d'
} else {
return undefined
}
}
})
*/
mdc.inited = () => {
// this is a hook method
}
mdc.init = (markdown) => {
let result = mdc.render(markdown)
document.getElementById('preview').innerHTML = result
// mermaid
mdc.mermaid.init(undefined, document.querySelectorAll('#preview .mermaid'))
// charts
document.querySelectorAll('#preview .chartjs').forEach(element => {
try {
new Chart(element, JSON.parse(element.textContent)) // eslint-disable-line no-new
} catch (e) {
element.outerHTML = `<pre>Chart.js complains: "${e}"</pre>`
}
})
mdc.inited()
}
export default mdc