Function tsDocNormalizeTagName

  • Normalizes known tag names to their TypeScript equivalents. If the tag name is not found in the map, it returns the input tag name.

    Parameters

    • tag: string

    Returns string

    The normalized tag name.

    Remarks

    This function is case-insensitive.

    Example

    tsDocNormalizeTagName("TagName");;
    //=> "tagname"

Generated using TypeDoc