@hrefcl/apidoc - v4.0.5
    Preparing search index...

    Exports

    • Parse

      Parameters

      • content: string

        Raw content from the

      Returns { name: string }

      Object containing the normalized name, or null if content is empty

      tag to extract and normalize API endpoint name

      Processes

      tags by trimming whitespace and converting spaces to underscores to create valid identifiers. Names are used for cross-referencing between API documentation sections and generating internal links.

      tag

      // Input: "GetUser"
      // Output: { name: "GetUser" }
      // Input: "Get User Profile"
      // Output: { name: "Get_User_Profile" }
      // Input: "   "
      // Output: null

      4.0.0