mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	Fixes 69 typescript errors found in the `admin` and `markup` folders. --------- Co-authored-by: Giteabot <teabot@gitea.io>
		
			
				
	
	
		
			19 lines
		
	
	
		
			498 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			498 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
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();
 | 
						|
}
 |