给 Markdown 中英文自动插入空格的 remark 插件(使用 pangu.js)。
npm install remark-pangu
remark().use(pangu)
const remark = require('remark')
const pangu = require('remark-pangu')
const doc = '中文abc中文';
remark().use(pangu).process(doc, (err, file) => {
console.log(String(file));
});
// => 中文 abc 中文