profectus-docs/profectus-theme/resources/helpers/if-show-named-anchors.js

10 lines
337 B
JavaScript
Raw Normal View History

2023-04-12 23:41:44 +00:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const Handlebars = require("handlebars");
function default_1(theme) {
Handlebars.registerHelper('ifShowNamedAnchors', function (options) {
return theme.namedAnchors ? options.fn(this) : options.inverse(this);
});
}
exports.default = default_1;