mirror of
https://github.com/one-among-us/data.git
synced 2024-11-10 13:24:50 +08:00
[PR] Merge pull request #173 from LS-KR/fix-html-comment
[F] Fix html comment could not be used in markdown
This commit is contained in:
commit
77579a1762
@ -50,7 +50,7 @@ function buildPeopleInfoAndList() {
|
||||
const info: any = YAML.load(infoFile);
|
||||
|
||||
// Read the page.md of that language
|
||||
const markdown = fs.readFileSync(path.join(srcPath, `page${lang}.md`), "utf-8");
|
||||
const markdown = fs.readFileSync(path.join(srcPath, `page${lang}.md`), "utf-8").replaceAll("<!--", "{/* ").replaceAll("-->", " */}");
|
||||
|
||||
// Get the markdown header
|
||||
const mdMeta = metadataParser(markdown).metadata
|
||||
@ -118,7 +118,7 @@ function buildPeoplePages() {
|
||||
for (const lang of ['', '.zh_hant', '.en'])
|
||||
{
|
||||
// Read markdown page and remove markdown meta
|
||||
let markdown = metadataParser(fs.readFileSync(path.join(srcPath, `page${lang}.md`), "utf-8")).content;
|
||||
let markdown = metadataParser(fs.readFileSync(path.join(srcPath, `page${lang}.md`), "utf-8")).content.replaceAll("<!--", "{/* ").replaceAll("-->", " */}");
|
||||
|
||||
// Autocorrect markdown
|
||||
markdown = autocorrect.formatFor(markdown, 'markdown')
|
||||
|
Loading…
Reference in New Issue
Block a user