Markdown展示
介绍
本项目没有特意针对markdown进行展示,而是api获取文件内容全部是以html形式返回。
如果需要markdown,推荐使用marked。
"代码内容"示例代码
代码地址pages/repos/code/text.vue
async getReposContent() {
this.reposContent = await this.$minApi.getReposContent(this.owner, this.repo, this.path, {
header: {
'Accept': 'application/vnd.github.v3.html+json'
}
})
}
1
2
3
4
5
6
7