blob: e0b7d1e6a8cdc1617d2cf6794b2827e9133079b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/**
Decode changes from a JS API to a page object.
Only the content can be edited by plugin's hooks.
@param {Output} output
@param {Page} page: page instance to edit
@param {Object} result: result from API
@return {Page}
*/
function decodePage(output, page, result) {
var originalContent = page.getContent();
// No returned value
// Existing content will be used
if (!result) {
return page;
}
// GitBook 3
// Use returned page.content if different from original content
if (result.content != originalContent) {
return page.set('content', result.content);
}
// GitBook 2 compatibility
// Finally, use page.sections
if (result.sections) {
return page.set('content',
result.sections.map(function(section) {
return section.content;
}).join('\n')
);
}
return page;
}
module.exports = decodePage;
|