forked from ether/ep_markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexport.js
49 lines (46 loc) · 1.27 KB
/
export.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
var eejs = require('ep_etherpad-lite/node/eejs/');
var Changeset = require("ep_etherpad-lite/static/js/Changeset");
function getInlineStyle(header) {
switch (header) {
case "h1":
return "font-size: 2.0em;line-height: 120%;";
break;
case "h2":
return "font-size: 1.5em;line-height: 120%;";
break;
case "h3":
return "font-size: 1.17em;line-height: 120%;";
break;
case "h4":
return "line-height: 120%;";
break;
case "h5":
return "font-size: 0.83em;line-height: 120%;";
break;
case "h6":
return "font-size: 0.75em;line-height: 120%;";
break;
case "code":
return "font-family: monospace";
}
return "";
}
// line, apool,attribLine,text
exports.getLineHTMLForExport = function (hook, context) {
// var header = _analyzeLine(context.attribLine, context.apool);
// if (header) {
// var inlineStyle = getInlineStyle(header);
// return "<" + header + " style=\"" + inlineStyle + "\">" + context.text.substring(1) + "</" + header + ">";
// }
}
function _analyzeLine(alineAttrs, apool) {
var header = null;
if (alineAttrs) {
var opIter = Changeset.opIterator(alineAttrs);
if (opIter.hasNext()) {
var op = opIter.next();
header = Changeset.opAttributeValue(op, 'heading', apool);
}
}
return header;
}