fix: md-loader code no line wrap

This commit is contained in:
07akioni 2021-01-04 01:03:09 +08:00
parent b6d06171fe
commit c51895d254
3 changed files with 9 additions and 9 deletions

View File

@ -40,14 +40,11 @@ function createRenderer (wrapCodeWithCard = true) {
`MdRendererError: ${language} is not valid for code - ${code}`
)
}
const highlighted = hljs
.highlight(language, code)
.value.replace(/\n/g, '<br />')
return `${
wrapCodeWithCard ? '<n-card size="small" class="md-card">' : ''
}<n-code><code v-pre>${highlighted}</code></n-code>${
wrapCodeWithCard ? '</n-card>' : ''
}`
const highlighted = hljs.highlight(language, code).value
const content = `<n-code><pre>${highlighted}</pre></n-code>`
return wrapCodeWithCard
? `<n-card size="small" class="md-card">${content}</n-card>`
: content
},
heading: (text, level) => {
const id = text.replace(/ /g, '-')

View File

@ -24,7 +24,7 @@ export default c([
font-family: var(--font-family);
`,
[
c('code', {
c('code, pre', {
fontFamily: 'var(--font-family)'
}),
c('[class^=hljs]', {

View File

@ -81,6 +81,7 @@
- [x] config-provider
- break
- `$NOs.theme` => `useOsTheme`
- `theme` => `legacy-theme`
- deprecate
- `as` => `tag`
- `styleScheme` won't working in next version
@ -373,6 +374,8 @@
- [ ] radio-group 影响主题切换,看起来是 vue 的 bug
- https://github.com/vuejs/vue-next/issues/2829
- [x] cascader demo async 切换未重置数据demo 写的有问题
- [ ] gradient-text transition 又没了
- [x] md-loader code
## Info