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