summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJohn McLear <john@mclear.co.uk>2014-12-08 19:48:02 +0000
committerJohn McLear <john@mclear.co.uk>2014-12-08 19:48:02 +0000
commitce004f9c59fbb7ea786ef4051498b2e895c5da37 (patch)
treeee9d1f665d7def11006c60169661b576143e02d7 /doc
parentf2c155ee1aa743be689ad898220462d13d2cc885 (diff)
downloadetherpad-lite-ce004f9c59fbb7ea786ef4051498b2e895c5da37.zip
docs
Diffstat (limited to 'doc')
-rw-r--r--doc/api/hooks_server-side.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/hooks_server-side.md b/doc/api/hooks_server-side.md
index 90f1b59c..e730f18e 100644
--- a/doc/api/hooks_server-side.md
+++ b/doc/api/hooks_server-side.md
@@ -259,8 +259,8 @@ This hook will allow a plug-in developer to append Styles to the Exported HTML.
Example:
```
-exports.stylesForExport = function(hook, context){
- return("body{margin-left:20px;body{color:orange}");
+exports.stylesForExport = function(hook, padId, cb){
+ cb("body{font-size:13.37em !important}");
}
```