HTML export: Move `padId` to context object property

pull/4482/head
Richard Hansen 2020-11-10 01:28:26 -05:00 committed by John McLear
parent f6aed0c9cb
commit 68a91f5e24
2 changed files with 9 additions and 10 deletions

View File

@ -661,22 +661,22 @@ function _analyzeLine(alineAttrs, apool) {
} }
``` ```
## exportHTMLAdditionalContent ## exportHTMLAdditionalContent
Called from: src/node/utils/ExportHtml.js Called from: src/node/utils/ExportHtml.js
Things in context: Things in context:
1. padId 1. padId
This hook will allow a plug-in developer to include additional HTML content in the Body of the exported HTML This hook will allow a plug-in developer to include additional HTML content in
the body of the exported HTML.
Example: Example:
```
exports.exportHTMLAdditionalContent = async (hookName, context) => {
let padId = context;
return "I am groot in " + padId;
}
```
exports.exportHTMLAdditionalContent = async (hookName, {padId}) => {
return 'I am groot in ' + padId;
};
``` ```
## stylesForExport ## stylesForExport

View File

@ -498,10 +498,9 @@ exports.getPadHTMLDocument = async function (padId, revNum)
let html = await getPadHTML(pad, revNum); let html = await getPadHTML(pad, revNum);
let exportHTMLAdditionalContent = await hooks.aCallAll("exportHTMLAdditionalContent", padId); for (const hookHtml of await hooks.aCallAll("exportHTMLAdditionalContent", {padId}) {
exportHTMLAdditionalContent.forEach(function(hookHtml){
html += hookHtml; html += hookHtml;
}); }
return eejs.require("ep_etherpad-lite/templates/export_html.html", { return eejs.require("ep_etherpad-lite/templates/export_html.html", {
body: html, body: html,