mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	refactor
This commit is contained in:
		
							parent
							
								
									698fbdf88b
								
							
						
					
					
						commit
						0e7778bebf
					
				
					 15 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -60,7 +60,7 @@ export default defineComponent({
 | 
			
		|||
 | 
			
		||||
	methods: {
 | 
			
		||||
		fetchDoc() {
 | 
			
		||||
			fetch(`${url}/assets/docs/${this.doc}.${lang}.md`).then(res => res.text()).then(md => {
 | 
			
		||||
			fetch(`${url}/assets/docs/${lang}/${this.doc}.md`).then(res => res.text()).then(md => {
 | 
			
		||||
				this.parse(md);
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -110,7 +110,7 @@ router.get('/docs.json', async ctx => {
 | 
			
		|||
		ctx.body = [];
 | 
			
		||||
		return;
 | 
			
		||||
	}
 | 
			
		||||
	const paths = glob.sync(__dirname + `/../../../src/docs/*.${lang}.md`);
 | 
			
		||||
	const paths = glob.sync(__dirname + `/../../../src/docs/${lang}/*.md`);
 | 
			
		||||
	const docs: { path: string; title: string; }[] = [];
 | 
			
		||||
	for (const path of paths) {
 | 
			
		||||
		const md = fs.readFileSync(path, { encoding: 'utf8' });
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue