-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.asciidoc.gen.js
46 lines (41 loc) · 1.26 KB
/
.asciidoc.gen.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
const asciidoctor = require('asciidoctor')();
const asciidoctorHtml5s = require("asciidoctor-html5s");
const prismExtension = require('asciidoctor-prism-extension');
const nunjucks = require('nunjucks');
asciidoctorHtml5s.register();
asciidoctor.SyntaxHighlighter.register('prism', prismExtension);
const defaultOptions = {
safe: "unsafe",
attributes: {
sectanchors: true,
idprefix: ""
}
}
module.exports = function (eleventyConfig) {
var nunjucksEnv = new nunjucks.Environment();
filters = eleventyConfig.nunjucksFilters;
for (var filterName in filters) {
if (filters.hasOwnProperty(filterName)) {
nunjucksEnv.addFilter(filterName, filters[filterName]);
}
}
return {
read: true,
getData: true,
getInstanceFromInputPath: function(inputPath) {
return ""
},
init: async function() {
},
compile: (str, inputPath) => (data) => {
var renderNunjucks = function (str, data) {
return nunjucksEnv.renderString(str, data);
}
if(typeof str === "string" && str.split(/\r\n|\r|\n/).length == 1) { //test if string is nunjucks
return typeof str === "function" ? str(data) : renderNunjucks(str,data);
} else {
return "<div class=\"adoc\">" + asciidoctor.convert(str, defaultOptions) + "</div>";
}
}
}
}