mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-04-06 14:30:46 +08:00
fix: md-loader code no line wrap
This commit is contained in:
parent
b6d06171fe
commit
c51895d254
@ -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, '-')
|
||||
|
@ -24,7 +24,7 @@ export default c([
|
||||
font-family: var(--font-family);
|
||||
`,
|
||||
[
|
||||
c('code', {
|
||||
c('code, pre', {
|
||||
fontFamily: 'var(--font-family)'
|
||||
}),
|
||||
c('[class^=hljs]', {
|
||||
|
3
vue3.md
3
vue3.md
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user