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