Api
Raw content from the tag
Parsed API information or null if parsing fails
// Input: "{get} /users Get all users"
// Output: { type: "get", url: "/users", title: "Get all users" }
// Input: "{post} /users/:id/update Update user by ID"
// Output: { type: "post", url: "/users/:id/update", title: "Update user by ID" }
// Input: "/users Get users"
// Output: { type: undefined, url: "/users", title: "Get users" }
Parser for tags - extracts HTTP method, URL, and title from API definitions
This parser handles the main tag that defines API endpoints. It extracts: