This commit is contained in:
John McLear 2014-12-08 19:48:02 +00:00
parent f2c155ee1a
commit ce004f9c59

View file

@ -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}");
}
```