lad
Version:
Lad is the best Node.js framework. Made by a former Express TC and Koa team member.
73 lines (68 loc) • 2.07 kB
JavaScript
// const { parse } = require('node-html-parser');
const I18N = require('@ladjs/i18n');
const cheerio = require('cheerio');
const isSANB = require('is-string-and-not-blank');
const i18nConfig = require('../config/i18n');
const logger = require('../helpers/logger');
const markdown = require('../helpers/markdown');
function fixTableOfContents(content) {
const $ = cheerio.load(content);
const $h1 = $('h1').first();
if ($h1.length === 0) return content;
const $h2 = $h1.next('h2');
if ($h2.length === 0) return content;
const $a = $h1.find('a').first();
if ($a.length === 0) return content;
$a.attr('id', 'top');
$a.attr('href', '#top');
const $a2 = $h2.find('a').first();
if ($a2.length === 0) return content;
$a2.attr('id', 'table-of-contents');
$a2.attr('href', '#table-of-contents');
const $ul = $h2.next('ul');
if ($ul.length === 0) return content;
const $links = $ul.find('a');
if ($links.length === 0) return content;
const $h2s = $('h2');
$links.each(function () {
const $link = $(this);
const text = $link.text();
const href = $link.attr('href');
const id = href.slice(1);
$h2s.each(function () {
const $h = $(this);
const $anchor = $h.find('a').first();
if ($anchor.length === 0) return;
if ($h.text() === text) {
$anchor.attr('href', href);
// strip the # so id is accurate
$anchor.attr('id', id);
}
});
});
return $.html();
}
module.exports = {
md: (string, options) => {
if (!isSANB(options.locale))
return `<div class="markdown-body">${fixTableOfContents(
markdown.render(string)
)}</div>`;
//
// NOTE: we want our own instance of i18n that does not auto reload files
//
const i18n = new I18N({
...i18nConfig,
autoReload: false,
updateFiles: false,
syncFiles: false,
logger
});
return `<div class="markdown-body">${fixTableOfContents(
i18n.api.t({
phrase: markdown.render(string),
locale: options.locale
})
)}</div>`;
}
};