-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
73 lines (55 loc) · 1.83 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
const markdownConverter = require('markdown-converter');
const DEFAULT_WRAPPER = {
block: 'content',
};
module.exports = class MarkdownBemjson {
constructor(options) {
this._options = options || {};
}
convert(markdownStr) {
const marked = this._getInitedMarked();
const bemjson = marked(markdownStr);
return this._getResult(bemjson);
}
_getInitedMarked() {
const markdownOptions = Object.assign({
renderer: this._getRenderer(),
output: 'json',
}, this._options.markdown || {});
markdownConverter.setOptions(markdownOptions);
return markdownConverter;
}
_getRenderer() {
const renderer = new markdownConverter.Renderer();
const rulesPath = './rules/default.js';
// eslint-disable-next-line global-require, import/no-dynamic-require
const defaultRules = require(rulesPath)(this._options);
let { rules } = this._options;
if (typeof rules === 'string') {
// eslint-disable-next-line global-require, import/no-dynamic-require
rules = require(rules)(this._options);
}
return Object.assign(renderer, defaultRules, rules);
}
_getResult(bemjson) {
const wrapper = this._getWrapper();
let result;
if (wrapper) {
result = wrapper;
result.content = bemjson;
} else {
result = bemjson;
}
return result;
}
_getWrapper() {
const result = (this._options.wrapper === undefined)
? DEFAULT_WRAPPER
: this._options.wrapper;
if (result !== false && typeof result !== 'object') {
const error = 'Wrapper must be plain object or false';
throw new Error(error);
}
return result;
}
};