forked from ether/ep_markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
31 lines (26 loc) · 1.02 KB
/
index.js
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
var path = require('path');
var eejs = require("ep_etherpad-lite/node/eejs");
var settings = require('ep_etherpad-lite/node/utils/Settings');
exports.eejsBlock_exportColumn = function(hook_name, args, cb) {
args.content = args.content + eejs.require("ep_markdown/templates/exportcolumn.html", {}, module);
return cb();
};
exports.eejsBlock_scripts = function (hook_name, args, cb) {
args.content = args.content + eejs.require("ep_markdown/templates/scripts.html", {}, module);
return cb();
};
exports.eejsBlock_styles = function (hook_name, args, cb) {
args.content = args.content + eejs.require("ep_markdown/templates/styles.html", {}, module);
return cb();
};
exports.eejsBlock_mySettings = function (hook_name, args, cb) {
if (!settings.ep_markdown_default){
checked_state = 'unchecked';
}else{
if(settings.ep_markdown_default == true){
checked_state = 'checked';
}
}
args.content = args.content + eejs.require('ep_markdown/templates/markdown_entry.ejs', {checked : checked_state});
return cb();
}