Initial commit, source code of Gitea 1.23.1
This commit is contained in:
18
web_src/js/markup/content.ts
Normal file
18
web_src/js/markup/content.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
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';
|
||||
|
||||
// code that runs for all markup content
|
||||
export function initMarkupContent(): void {
|
||||
renderMermaid();
|
||||
renderMath();
|
||||
renderCodeCopy();
|
||||
renderAsciicast();
|
||||
}
|
||||
|
||||
// code that only runs for comments
|
||||
export function initCommentContent(): void {
|
||||
initMarkupTasklist();
|
||||
}
|
Reference in New Issue
Block a user