serialize_current_mindmap_to_markdown
Convert the currently loaded mind map to Markdown format for easy sharing and documentation. Includes options for notes, detail levels, and text-only turbo mode for efficient conversion.
Instructions
Serializes the currently loaded mindmap to Markdown format.
Args:
include_notes (bool): If True, include notes in the serialization. Defaults to True.
mode (str): Detail level ('full', 'content', 'text'). Defaults to 'full'.
turbo_mode (bool): Enable turbo mode (text only). Defaults to False.
Returns:
Union[str, Dict[str, str]]: Markdown formatted string or error dictionary.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_notes | No | ||
mode | No | content | |
turbo_mode | No |
Input Schema (JSON Schema)
{
"properties": {
"include_notes": {
"default": true,
"title": "Include Notes",
"type": "boolean"
},
"mode": {
"default": "content",
"title": "Mode",
"type": "string"
},
"turbo_mode": {
"default": false,
"title": "Turbo Mode",
"type": "boolean"
}
},
"title": "serialize_current_mindmap_to_markdownArguments",
"type": "object"
}