{
  "slug": "markdown-to-latex",
  "name": "gizza-ai/markdown-to-latex",
  "version": "0.1.0",
  "title": "Markdown to LaTeX Converter — gizza.ai",
  "description": "Convert Markdown to LaTeX in your browser — headings, lists, tables, code blocks, links, math passthrough; body fragment or full document. Free, no upload.",
  "tags": [
    "markdown to latex",
    "md to tex",
    "markdown to tex",
    "latex converter",
    "markdown latex",
    "tex generator",
    "booktabs table",
    "listings code"
  ],
  "category": "documents",
  "urls": {
    "page": "https://gizza.ai/tools/markdown-to-latex/",
    "markdown": "https://gizza.ai/tools/markdown-to-latex/index.md",
    "descriptor": "https://gizza.ai/tools/markdown-to-latex/tool.json",
    "deep_link_example": "https://gizza.ai/tools/markdown-to-latex/?markdown=%23%20Title%0A%0ASome%20%2A%2Abold%2A%2A%20and%20%2Aitalic%2A%20text%20with%20%60code%60.%0A%0A-%20one%0A-%20two%0A%0A%7C%20a%20%7C%20b%20%7C%0A%7C---%7C---%7C%0A%7C%201%20%7C%202%20%7C&full_document=true&heading_offset=0"
  },
  "cli": "gizza tool markdown-to-latex '# Title\n\nSome **bold** and *italic* text with `code`.\n\n- one\n- two\n\n| a | b |\n|---|---|\n| 1 | 2 |'",
  "tool": {
    "description": "Convert a Markdown document into LaTeX source. Supports ATX and setext headings (mapped to \\section/\\subsection/...), ordered/unordered and nested lists, GitHub task lists, fenced and indented code blocks (via the listings/verbatim environments), blockquotes, GitHub pipe tables (tabular with booktabs rules and column alignment), thematic breaks, links and images (hyperref/graphicx), autolinks, inline bold/italic/code, strikethrough (~~text~~ via ulem \\sout), and footnotes ([^id] references with [^id]: definitions). The ten LaTeX special characters in prose are escaped automatically, and inline/display math ($...$ and $$...$$) is passed through verbatim. Set full_document=true to wrap the body in a compilable standalone document, or heading_offset=N (0-5) to demote headings when pasting into an existing document.",
    "parameters": {
      "additionalProperties": false,
      "properties": {
        "full_document": {
          "default": false,
          "description": "When true, wrap the LaTeX body in a compilable standalone document.",
          "type": "boolean"
        },
        "heading_offset": {
          "default": 0,
          "description": "Shift every heading down by this many levels, 0-5.",
          "maximum": 5,
          "minimum": 0,
          "type": "integer"
        },
        "markdown": {
          "description": "The Markdown document to convert to LaTeX.",
          "type": "string"
        }
      },
      "required": [
        "markdown"
      ],
      "type": "object"
    }
  }
}