2020-07-27 15:24:09 +09:00
|
|
|
import {renderMermaid} from './mermaid.js';
|
2022-09-14 01:33:37 +09:00
|
|
|
import {renderMath} from './math.js';
|
2021-11-16 17:16:05 +09:00
|
|
|
import {renderCodeCopy} from './codecopy.js';
|
2023-01-18 09:46:58 +09:00
|
|
|
import {renderAsciinemaPlayer} from './asciicast.js';
|
2021-05-23 23:14:03 +09:00
|
|
|
import {initMarkupTasklist} from './tasklist.js';
|
2020-07-27 15:24:09 +09:00
|
|
|
|
2021-05-23 23:14:03 +09:00
|
|
|
// code that runs for all markup content
|
2021-11-09 18:27:25 +09:00
|
|
|
export function initMarkupContent() {
|
2021-11-16 17:16:05 +09:00
|
|
|
renderMermaid();
|
2022-09-14 01:33:37 +09:00
|
|
|
renderMath();
|
2021-11-16 17:16:05 +09:00
|
|
|
renderCodeCopy();
|
2023-01-18 09:46:58 +09:00
|
|
|
renderAsciinemaPlayer();
|
2020-07-27 15:24:09 +09:00
|
|
|
}
|
2021-05-23 23:14:03 +09:00
|
|
|
|
|
|
|
// code that only runs for comments
|
|
|
|
export function initCommentContent() {
|
|
|
|
initMarkupTasklist();
|
|
|
|
}
|