-
Notifications
You must be signed in to change notification settings - Fork 1
/
module.yaml
102 lines (82 loc) · 3.15 KB
/
module.yaml
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
name: Markdown-IT
description: Write Markdown as task-descriptions for your students, this markdown interpreter additionally allows to integrate formulas, ASCII-art and videos. For more information, see <br><a href='https://github.com/Cross-Lab-Project/edrys_module-markdown-it' target='_blank'>https://github.com/Cross-Lab-Project/edrys_module-markdown-it</a>
show-in:
- '*'
load:
scripts:
- dist/index.js
- https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/highlight.min.js
- https://cdn.jsdelivr.net/npm/markdown-it-texmath/texmath.min.js
- https://cdn.jsdelivr.net/npm/katex/dist/katex.min.js
- https://cdnjs.cloudflare.com/ajax/libs/mermaid/9.2.2/mermaid.min.js
- https://cdnjs.cloudflare.com/ajax/libs/markdown-it/13.0.1/markdown-it.min.js
- https://cross-lab-project.github.io/edrys-Lite/module/vendor/alpine.min.js
- https://cross-lab-project.github.io/edrys-Lite/module/edrys.js
links:
- https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/styles/default.min.css
- https://cdn.jsdelivr.net/npm/markdown-it-texmath/css/texmath.min.css
- https://cdn.jsdelivr.net/npm/katex/dist/katex.min.css
- https://cross-lab-project.github.io/edrys-Lite/module/vendor/water.min.css
- https://cross-lab-project.github.io/edrys-Lite/module/vendor/open-iconic/css/open-iconic.min.css
body: ""
main: |-
function init() {
if (window.md) return
if (!window.markdownItTextualUml) {
setTimeout(init, 100)
return
}
window.md = markdownit()
// enable everything
window.md.options.html = true
window.md.options.linkify = true
window.md.options.typographer = true
window.md.options.highlight = function (str, lang) {
if (lang && hljs.getLanguage(lang)) {
try {
return '<pre class="hljs"><code style="border-radius: 0px">' +
hljs.highlight(str, {
language: lang,
ignoreIllegals: true
}).value +
'</code></pre>';
} catch (__) {}
}
return '<pre class="hljs"><code style="border-radius: 0px">' + md.utils.escapeHtml(str) +
'</code></pre>';
}
window.md.use(
texmath, {
engine: katex,
delimiters: 'dollars',
katexOptions: {
macros: {
"\\RR": "\\mathbb{R}"
}
}
})
.use(window.markdownItTextualUml)
}
function render(content) {
if (window.md) {
document.body.innerHTML = md.render(content)
setTimeout(() => {
console.warn("loading mermaid")
mermaid.initialize({
startOnLoad: true
})
}, 1000)
} else {
setTimeout(() => {
render(content)
}, 100)
}
}
window.onload = init
Edrys.onReady(() => {
console.log("Markdown-IT loaded")
init()
let content = Edrys.module.config || ""
content += "\n\n" + ( Edrys.module[Edrys.role.toLowerCase()+'Config'] || "" )
render(content)
});