;(function() {
var brodocDec = {};
var navIds = [];
var bodyContent = '';
var codeTabs = [];
var idAffix = 0;
var uniqueNav = [];
brodocDec.decorateMarked = function(renderer) {
renderer.heading = (text, level, raw) => {
var id = raw.toLowerCase().replace(/[^\w]+/g, '-');
if ((uniqueNav.indexOf(id) !== -1) && (level === 2)) {
idAffix++;
id += '-' + idAffix;
} else {
uniqueNav.push(id);
}
if (level < 3) {
navIds.push(
{
id: id,
text: text,
level: level
}
);
}
return '
\n' + bdquote + '\n'; } else { return '
\n' + quote + '\n'; } }; renderer.code = function (code, lang, escaped) { var bdocGroup = lang.substring(0, lang.indexOf('_')); var bdocTab = bdocGroup.split(':')[1]; var hlang = lang.substring(lang.indexOf('_')+1); if (renderer.options.highlight) { var out = renderer.options.highlight(code, hlang); if (out !== null && out !== code) { escaped = true; code = out; } } var tabLang = hlang ? hlang : 'generic'; if (codeTabs.indexOf(bdocTab) === -1) { codeTabs.push(bdocTab); } if (!hlang) { return '
'
+ (escaped ? code : escape(code, true))
+ '\n
';
}
return ''
+ (escaped ? code : escape(code, true))
+ '\n
\n';
};
};
if (typeof module !== 'undefined' && typeof exports === 'object') {
module.exports = brodocDec;
} else if (typeof define === 'function' && define.amd) {
define(function() { return brodocDec; });
} else {
this.brodocDec = brodocDec;
}
brodocDec.navIds = navIds;
brodocDec.codeTabs = codeTabs;
return brodocDec;
}).call(function() {
return this || (typeof window !== 'undefined' ? window : global);
}());