|
@@ -93,7 +93,7 @@ export function genTextBody(
|
|
|
'': '•', // 默认圆点
|
|
|
}
|
|
|
const displayChar = symbolMap[bulletChar] || bulletChar
|
|
|
- text += `<span style="display: inline-block; width: 20px; margin-left: ${indentSize}px;">${displayChar}</span>`
|
|
|
+ text += `<span style="display: inline-block; width: 20px; margin-left: -${indentSize}px;">${displayChar}</span>`
|
|
|
}
|
|
|
else {
|
|
|
let displayNumber = ''
|
|
@@ -124,7 +124,7 @@ export function genTextBody(
|
|
|
displayNumber = `${currentNumber}.`
|
|
|
}
|
|
|
|
|
|
- text += `<span style="display: inline-block; margin-left: ${indentSize}px;">${displayNumber}</span>`
|
|
|
+ text += `<span style="display: inline-block; margin-left: -${indentSize}px;">${displayNumber}</span>`
|
|
|
}
|
|
|
}
|
|
|
else {
|