action wikimedia_post_media_math_check_type { label: "Check and normalize a TeX formula." description: "Checks the supplied TeX formula for correctness and returns the\nnormalised formula representation as well as information about\nidentifiers. Available types are tex and inline-tex. The response\ncontains the `x-resource-location` header which can be used to retrieve\nthe render of the checked formula in one of the supported rendering\nformats. Just append the value of the header to `/media/math/{format}/`\nand perform a GET request against that URL.\n\nStability: [stable](https://www.mediawiki.org/wiki/API_versioning#Stable).\n" provider: wikimedia method: POST path: "/media/math/check/{type}" encoding: json input: { type: "object" properties: { type: { type: "string" } } required: ["type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }