Files
Atay-Makhzan/web_src/js/markup/content.js
T

15 lines
363 B
JavaScript
Raw Normal View History

2020-07-27 08:24:09 +02:00
import {renderMermaid} from './mermaid.js';
import {renderCodeCopy} from './codecopy.js';
2021-05-23 16:14:03 +02:00
import {initMarkupTasklist} from './tasklist.js';
2020-07-27 08:24:09 +02:00
2021-05-23 16:14:03 +02:00
// code that runs for all markup content
export function initMarkupContent() {
renderMermaid();
renderCodeCopy();
2020-07-27 08:24:09 +02:00
}
2021-05-23 16:14:03 +02:00
// code that only runs for comments
export function initCommentContent() {
initMarkupTasklist();
}