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

19 lines
498 B
TypeScript
Raw Normal View History

import {renderMermaid} from './mermaid.ts';
import {renderMath} from './math.ts';
import {renderCodeCopy} from './codecopy.ts';
import {renderAsciicast} from './asciicast.ts';
import {initMarkupTasklist} from './tasklist.ts';
2020-07-27 08:24:09 +02:00
2021-05-23 16:14:03 +02:00
// code that runs for all markup content
2024-11-11 12:13:57 +01:00
export function initMarkupContent(): void {
renderMermaid();
2022-09-13 17:33:37 +01:00
renderMath();
renderCodeCopy();
renderAsciicast();
2020-07-27 08:24:09 +02:00
}
2021-05-23 16:14:03 +02:00
// code that only runs for comments
2024-11-11 12:13:57 +01:00
export function initCommentContent(): void {
2021-05-23 16:14:03 +02:00
initMarkupTasklist();
}