在 outline.paragraphs.items[0].insertRichTextAsSibling('Before', code) 中添加 \n 字符;
Adding \n characters inside outline.paragraphs.items[0].insertRichTextAsSibling('Before', code);
我正在尝试通过
在 OneNote 的(Web)段落中添加带有 \n 换行符的文本
outline.paragraphs.items[0].insertRichTextAsSibling('Before', text);
问题是这些换行符在一张便条中不可见。它们在页面刷新后可见。我错过了什么吗?
显示行为的 Gif。
http://giphy.com/gifs/l3q2C8LhETxg9KWtO
\n 是不支持的字符
您可以执行以下操作。
var row1Text = outline.paragraphs.items[0].insertRichTextAsSibling('Before', 'row 1');
var row2Text = row1Text.paragraph.insertRichTextAsSibling('After', 'row 2');
var row3Text = row2Text.paragraph.insertRichTextAsSibling('After', 'row 3');
var row4Text = row3Text.paragraph.insertRichTextAsSibling('After', 'row 4');
您要查找的是insertHtmlAsSibling。
outline.paragraphs.items[0].insertHtmlAsSibling('Before', "row1<br>row2<br>row3<br>row4<br>);
使用该功能,您将能够创建列表、表格、使用粗体等特殊字体的文本。
我正在尝试通过
在 OneNote 的(Web)段落中添加带有 \n 换行符的文本outline.paragraphs.items[0].insertRichTextAsSibling('Before', text);
问题是这些换行符在一张便条中不可见。它们在页面刷新后可见。我错过了什么吗?
显示行为的 Gif。 http://giphy.com/gifs/l3q2C8LhETxg9KWtO
\n 是不支持的字符 您可以执行以下操作。
var row1Text = outline.paragraphs.items[0].insertRichTextAsSibling('Before', 'row 1');
var row2Text = row1Text.paragraph.insertRichTextAsSibling('After', 'row 2');
var row3Text = row2Text.paragraph.insertRichTextAsSibling('After', 'row 3');
var row4Text = row3Text.paragraph.insertRichTextAsSibling('After', 'row 4');
您要查找的是insertHtmlAsSibling。
outline.paragraphs.items[0].insertHtmlAsSibling('Before', "row1<br>row2<br>row3<br>row4<br>);
使用该功能,您将能够创建列表、表格、使用粗体等特殊字体的文本。