mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-24 17:36:14 -04:00
pluginfw: Hook to include additional body in HTML exports (#4469)
* hook, needs docs * docs
This commit is contained in:
parent
3fa58efede
commit
881d8b8d95
2 changed files with 23 additions and 0 deletions
|
@ -661,6 +661,24 @@ function _analyzeLine(alineAttrs, apool) {
|
|||
}
|
||||
```
|
||||
|
||||
## exportHTMLAdditionalContent
|
||||
Called from: src/node/utils/ExportHtml.js
|
||||
|
||||
Things in context:
|
||||
|
||||
1. padId
|
||||
|
||||
This hook will allow a plug-in developer to include additional HTML content in the Body of the exported HTML
|
||||
|
||||
Example:
|
||||
```
|
||||
exports.exportHTMLAdditionalContent = async (hookName, context) => {
|
||||
let padId = context;
|
||||
return "I am groot in " + padId;
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
## stylesForExport
|
||||
Called from: src/node/utils/ExportHtml.js
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue