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