mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
486 B
19 lines
486 B
5 months ago
|
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';
|
||
4 years ago
|
|
||
4 years ago
|
// code that runs for all markup content
|
||
3 years ago
|
export function initMarkupContent() {
|
||
3 years ago
|
renderMermaid();
|
||
2 years ago
|
renderMath();
|
||
3 years ago
|
renderCodeCopy();
|
||
2 years ago
|
renderAsciicast();
|
||
4 years ago
|
}
|
||
4 years ago
|
|
||
|
// code that only runs for comments
|
||
|
export function initCommentContent() {
|
||
|
initMarkupTasklist();
|
||
|
}
|