{
  "slug": "outline-to-mindmap",
  "name": "gizza-ai/outline-to-mindmap",
  "version": "0.1.0",
  "title": "Outline to Mind Map — turn an indented outline into an SVG mind map — gizza.ai",
  "description": "Paste an indented text outline and get a clean mind-map SVG in your browser — nothing uploaded. Indentation sets nesting; right or top-down layouts, dark theme.",
  "tags": [
    "outline to mind map",
    "text to mind map",
    "mind map maker",
    "mind map svg",
    "outline mind map generator",
    "indented outline diagram"
  ],
  "category": "image",
  "urls": {
    "page": "https://gizza.ai/tools/outline-to-mindmap/",
    "markdown": "https://gizza.ai/tools/outline-to-mindmap/index.md",
    "descriptor": "https://gizza.ai/tools/outline-to-mindmap/tool.json",
    "deep_link_example": "https://gizza.ai/tools/outline-to-mindmap/?outline=Project%0A%20%20Research%0A%20%20%20%20Interviews%0A%20%20%20%20Surveys%0A%20%20Design%0A%20%20%20%20Wireframes%0A%20%20Build%0A%20%20Launch&direction=right&colorful=true&dark_mode=true&title=Mind%20Map"
  },
  "cli": "gizza tool outline-to-mindmap \"Project\n  Research\n    Interviews\n    Surveys\n  Design\n    Wireframes\n  Build\n  Launch\"",
  "tool": {
    "description": "Turn an indented text outline into a mind-map SVG. Each line is a node; deeper indentation (spaces or tabs) nests it under the line above; leading bullet/number markers are stripped. A single top-level line is the central topic; multiple top-level lines hang under a synthetic center. Optional layout direction (right/down), per-branch color, and dark mode. Returns scalable SVG markup as text.",
    "parameters": {
      "additionalProperties": false,
      "properties": {
        "colorful": {
          "default": true,
          "description": "Color each top-level branch (default true).",
          "type": "boolean"
        },
        "dark_mode": {
          "default": false,
          "description": "Recolor for a dark background (default false).",
          "type": "boolean"
        },
        "direction": {
          "default": "right",
          "description": "Layout direction: right (default) or down.",
          "enum": [
            "right",
            "down"
          ],
          "type": "string"
        },
        "outline": {
          "description": "The indented text outline to map.",
          "type": "string"
        },
        "title": {
          "default": "Mind Map",
          "description": "Central node label for multi-root outlines.",
          "type": "string"
        }
      },
      "required": [
        "outline"
      ],
      "type": "object"
    }
  }
}