vuepress-reco / vuepress-theme-reco

🎨 This is the repo for vuepress-theme-reco 2.
https://vuepress-theme-reco.recoluan.com
MIT License
538 stars 173 forks source link

打包md必须使用时间,否则报错 | Packing md must use time, otherwise an error is reported #228

Closed viceroyliu closed 11 months ago

viceroyliu commented 11 months ago

Bug report

中文:打包的时候md文件必须增加date,不然会报错。 English:The md file must be loaded with a date, or you'll get an error.

try method

file:other.js // ISODate增加默认值为空字符串,即可解决 export function formatISODate(ISODate = '') { const dateStr = ISODate.replace('T', ' ').replace('Z', '').split('.')[0];

const formatDateStr = dateStr.replace(/(\s00:00:00)$/, ''); return formatDateStr; }