editor设置text-indent时会添加一个空格
调用editor的setContents传html,如果html中有style为 text-index: 2em,则会在内容的最前面加一个空格,最终会有3个空格的大小。 this.editorCtx.setContents({
html: `<p style="text-indent: 2em;">随便什么内容。</p>`
})
然后使用getCotents得到的结果就是 <p wx:nodeid="65" style="text-indent: 2em;"> 随便什么内容。</p>