Commit 1c707809 authored by KesaubeEire's avatar KesaubeEire

fix: 正确刮削 Markdown.

parent c64e4ae0
......@@ -13,7 +13,7 @@
let _markdown = () => {
if (!markdown.length) return '# 233';
// console.log(markdown);
let res = markdown.replaceAll('[copy]', '```javascript\n').replaceAll('[/copy]', '\n```');
let res = markdown.replaceAll('[copy]', '\n```\n').replaceAll('[/copy]', '\n```\n');
const readme = `# 公共使用说明\n\n一般来讲, 首先要开始游戏至第一个自由活动点 (能自由走动的状态).
此时按下F12, 选中【控制台】, 即可开始输入指令.\n\n \n\n---\n\n# 本地使用说明\n`;
res = readme + res;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment