Former-commit-id: 54128cef75768f9e96894cee70ab6d664f9c1f55 Former-commit-id: 58f0cef57b7ac8468c36f06c99016b774f528a93 Former-commit-id: bb87602f15c3cc6f996e0b761014b84b36a9c0e4
96 lines
2.0 KiB
Vue
96 lines
2.0 KiB
Vue
<template>
|
|
<div class="component-markdown">
|
|
<div class="spin-group" v-if="!markedHTML">
|
|
<div>正在加载</div>
|
|
</div>
|
|
<img src="/static/image/baidu-pan-logo.png">
|
|
<div class="markdown-body" v-html="markedHTML"></div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import marked from 'marked'
|
|
import highlight from 'highlight.js'
|
|
import bandupan from './plugin/baidupan'
|
|
export default {
|
|
props: {
|
|
url: {
|
|
type: String,
|
|
required: false,
|
|
default: ''
|
|
},
|
|
md: {
|
|
type: String,
|
|
required: false,
|
|
default: ''
|
|
},
|
|
highlight: {
|
|
type: Boolean,
|
|
required: false,
|
|
default: false
|
|
},
|
|
// 百度网盘分享链接特殊样式
|
|
baidupan: {
|
|
type: Boolean,
|
|
required: false,
|
|
default: true
|
|
}
|
|
},
|
|
data () {
|
|
return {
|
|
getReadmePublicPath: '',
|
|
markedHTML: ''
|
|
}
|
|
},
|
|
mounted () {
|
|
if (this.url) {
|
|
this.initWithUrl()
|
|
} else if (this.md) {
|
|
this.initWithMd()
|
|
} else {
|
|
console.log('not mounted init')
|
|
}
|
|
},
|
|
methods: {
|
|
// 使用 md 初始化
|
|
initWithMd () {
|
|
this.markedHTML = this.marked(this.md)
|
|
},
|
|
// 使用 url 初始化
|
|
async initWithUrl () {
|
|
this.markedHTML = await this.getReadme(this.url)
|
|
},
|
|
// 从 url 加载原始数据
|
|
async getReadme (name) {
|
|
const data = await this.$axios.get(name)
|
|
return this.marked(data)
|
|
},
|
|
marked (data) {
|
|
const renderer = new marked.Renderer()
|
|
renderer.blockquote = (quote) => {
|
|
return bandupan(quote) || `<blockquote>${quote}</blockquote>`
|
|
}
|
|
return marked(data, {
|
|
...this.highlight ? {highlight: (code) => highlight.highlightAuto(code).value} : {},
|
|
renderer
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import '~@/assets/style/public.scss';
|
|
.component-markdown {
|
|
.spin-group {
|
|
height: 100px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
color: $color-primary;
|
|
}
|
|
}
|
|
</style>
|
|
|