UNPKG

@redpanda-data/docs-extensions-and-macros

Version:

Antora extensions and macros developed for Redpanda documentation.

12 lines (10 loc) 294 B
'use strict'; module.exports.register = function (registry) { registry.inlineMacro(function () { const self = this; self.named('enterprise-label'); self.process((parent, target, attrs) => { return `<span class="inline-enterprise-label">Enterprise</span>`; }); }); };