0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-03-12 02:52:45 +01:00

15 lines
363 B
JavaScript
Raw Normal View History

import {renderMermaid} from './mermaid.js';
import {renderCodeCopy} from './codecopy.js';
import {initMarkupTasklist} from './tasklist.js';
// code that runs for all markup content
export function initMarkupContent() {
renderMermaid();
renderCodeCopy();
}
// code that only runs for comments
export function initCommentContent() {
initMarkupTasklist();
}