2020-07-27 08:24:09 +02:00
|
|
|
import {renderMermaid} from './mermaid.js';
|
2021-11-16 09:16:05 +01:00
|
|
|
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
|
2021-11-09 10:27:25 +01:00
|
|
|
export function initMarkupContent() {
|
2021-11-16 09:16:05 +01:00
|
|
|
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();
|
|
|
|
}
|