文章正文包括各种数据:段落、标题、列表、链接、图片、视频等资源。
将 github-markdown-css 样式文件下载到项目中(https://github.com/sindresorhus/github-markdown-css)
导入
import './github-markdown.css'
添加类名markdown-body
<div class="article-content markdown-body" v-html="article.content"></div>
配置不要转换样式文件中的字号 exclude: 'github-markdown'
'postcss-pxtorem': {
rootValue ({ file }) {
return file.indexOf('vant') !== -1 ? 37.5 : 75
},
propList: ['*'],
exclude: 'github-markdown'
}