mirror of
https://github.com/doocs/md.git
synced 2024-11-24 19:10:34 +08:00
fix: render of list (#360)
This commit is contained in:
parent
223d59b5a2
commit
57c59bff33
@ -168,7 +168,14 @@ class WxRenderer extends Renderer {
|
|||||||
for (let i = 0; i < items.length; i++) {
|
for (let i = 0; i < items.length; i++) {
|
||||||
const { tokens } = items[i]
|
const { tokens } = items[i]
|
||||||
const prefix = ordered ? `${i + 1}. ` : `• `
|
const prefix = ordered ? `${i + 1}. ` : `• `
|
||||||
listItems.push(this.listitem(tokens, prefix))
|
for (const token of tokens) {
|
||||||
|
if (token.type === `list`) {
|
||||||
|
listItems.push(this.list(token))
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
listItems.push(this.listitem([token], prefix))
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
const label = ordered ? `ol` : `ul`
|
const label = ordered ? `ol` : `ul`
|
||||||
return this.styledContent(label, listItems.join(``))
|
return this.styledContent(label, listItems.join(``))
|
||||||
|
Loading…
Reference in New Issue
Block a user