在example中,提供了用于获取RichText的代码。它能够获得页面的文本内容,但我似乎无法得到它返回页面格式化内容的HTML。OneNote加入:获取HTML内容
例如:
Header:
A
B
应该是:
Header:
- A
- B
然而,示例代码使用richText/text和只返回Header:。是否有可能做类似richText/HTML并获得上面显示的HTML? (注意:我只想使用加载项而不是OneNote REST API。)
谢谢!从文档
代码片段:
OneNote.run(function (context) {
// Get the collection of pageContent items from the page.
var pageContents = context.application.getActivePage().contents;
// Get the first PageContent on the page, and then get its outline's paragraphs.
var outlinePageContents = [];
var paragraphs = [];
var richTextParagraphs = [];
// Queue a command to load the id and type of each page content in the outline.
pageContents.load("id,type");