typedoc-plugin-markdown
Version:
A plugin for TypeDoc that enables TypeScript API documentation to be generated in Markdown.
11 lines (10 loc) • 365 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ifShowNamedAnchors = void 0;
const theme_1 = require("../../theme");
function ifShowNamedAnchors(options) {
return theme_1.default.HANDLEBARS.helpers.namedAnchors()
? options.fn(this)
: options.inverse(this);
}
exports.ifShowNamedAnchors = ifShowNamedAnchors;