@wdprlib/render
    Preparing search index...

    Function renderBibliographyBlock

    • Render a bibliography block: [[bibliography]]...[[/bibliography]].

      Produces a Wikidot-compatible numbered list of bibliography entries:

      <div class="bibitems">
      <div class="title">Bibliography</div>
      <div class="bibitem" id="bibitem-1">1. Content...</div>
      ...
      </div>

      If data.hide is true, the block is suppressed (entries still participate in citation numbering but are not rendered visually).

      Parameters

      • ctx: RenderContext

        The current render context.

      • data: BibliographyBlockData

        Bibliography block data containing entries and optional title/hide flags.

      • renderElements: (ctx: RenderContext, elements: Element[]) => void

        Callback to render child elements within each entry.

      Returns void