@wdprlib/render
    Preparing search index...
    • Render an unresolved [[module TagCloud]] element as an empty container.

      Parameters

      • ctx: RenderContext

        The current render context.

      • _data: {
            category: string | null;
            "font-size-unit":
                | "cqmax"
                | "cqmin"
                | "cqw"
                | "cqh"
                | "cqi"
                | "cqb"
                | "svmin"
                | "svmax"
                | "lvmin"
                | "lvmax"
                | "dvmin"
                | "dvmax"
                | "vmin"
                | "vmax"
                | "svw"
                | "svh"
                | "svi"
                | "svb"
                | "lvw"
                | "lvh"
                | "lvi"
                | "lvb"
                | "dvw"
                | "dvh"
                | "dvi"
                | "dvb"
                | "vw"
                | "vh"
                | "vi"
                | "vb"
                | "rcap"
                | "rem"
                | "rex"
                | "rch"
                | "ric"
                | "rlh"
                | "cap"
                | "em"
                | "ex"
                | "ch"
                | "ic"
                | "lh"
                | "cm"
                | "mm"
                | "in"
                | "pc"
                | "pt"
                | "px"
                | "q"
                | "%";
            limit: number;
            "max-color": [number, number, number];
            "max-font-size": number;
            "min-color": [number, number, number];
            "min-font-size": number;
            module: "tag-cloud";
            target: string;
        }

        TagCloud module data (unused; the container is always empty).

        • category: string | null

          Category filter, or null for all categories

        • font-size-unit:
              | "cqmax"
              | "cqmin"
              | "cqw"
              | "cqh"
              | "cqi"
              | "cqb"
              | "svmin"
              | "svmax"
              | "lvmin"
              | "lvmax"
              | "dvmin"
              | "dvmax"
              | "vmin"
              | "vmax"
              | "svw"
              | "svh"
              | "svi"
              | "svb"
              | "lvw"
              | "lvh"
              | "lvi"
              | "lvb"
              | "dvw"
              | "dvh"
              | "dvi"
              | "dvb"
              | "vw"
              | "vh"
              | "vi"
              | "vb"
              | "rcap"
              | "rem"
              | "rex"
              | "rch"
              | "ric"
              | "rlh"
              | "cap"
              | "em"
              | "ex"
              | "ch"
              | "ic"
              | "lh"
              | "cm"
              | "mm"
              | "in"
              | "pc"
              | "pt"
              | "px"
              | "q"
              | "%"

          Unit shared by both font sizes (lowercase)

        • limit: number

          Maximum number of tags to display

        • max-color: [number, number, number]

          RGB components for the heaviest-weighted tag

        • max-font-size: number

          Numeric part of the font size for the heaviest-weighted tag

        • min-color: [number, number, number]

          RGB components for the lightest-weighted tag

        • min-font-size: number

          Numeric part of the font size for the lightest-weighted tag

        • module: "tag-cloud"

          [[module TagCloud]] — weighted cloud of page tags

        • target: string

          Normalized link target prefix, always ending with /tag/

      Returns void