← 返回
未分类 中文

Bytesagain Mindmap

Generate ASCII mind maps from indented text outlines to visualize hierarchies and structures directly in the terminal or export as Markdown.
从缩进文本大纲生成 ASCII 思维导图,直接在终端中可视化层级结构或导出为 Markdown。
loutai0307-prog
未分类 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 679
下载
💾 2
安装
1
版本
#latest

概述

mindmap

Text Mind Map Generator — Transform plain outlines and bullet lists into beautiful ASCII tree diagrams. Visualize your ideas, document structures, and hierarchies directly in the terminal.

Commands

CommandDescriptionExample
-------------------------------
createGenerate ASCII mind map from text inputcreate "Project\n Frontend\n React\n Backend\n Node"
viewRead a text file and render as mind mapview outline.txt
exportRender and output as Markdown code blockexport outline.txt

Usage

# From a string (use \n for newlines)
bash script.sh create "Root\n  Branch A\n    Leaf 1\n    Leaf 2\n  Branch B"

# From a file
bash script.sh view my-outline.txt

# Export as Markdown
bash script.sh export my-outline.txt > mindmap.md

# Pipe from stdin
cat outline.txt | bash script.sh view -

Input Format

Use indentation (spaces or tabs) to define hierarchy. The first non-empty line is the root node.

My Project
  Frontend
    React
      Components
      Hooks
    CSS
      Tailwind
  Backend
    Node.js
    PostgreSQL
  DevOps
    Docker
    CI/CD

Requirements

  • bash >= 4.0
  • python3 >= 3.7
  • No external packages required (uses only stdlib)

Examples

$ bash script.sh create "Learning Python\n  Basics\n    Variables\n    Functions\n  OOP\n    Classes\n    Inheritance\n  Libraries\n    NumPy\n    Pandas"

Learning Python
├── Basics
│   ├── Variables
│   └── Functions
├── OOP
│   ├── Classes
│   └── Inheritance
└── Libraries
    ├── NumPy
    └── Pandas
$ bash script.sh export outline.txt

My Project

├── Frontend

│ ├── React

│ └── CSS

└── Backend

└── Node.js

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-07 07:06 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

Python Cookbook

loutai0307-prog
Python 代码模式和常用代码片段,适用于日常任务。需要文件读写、列表推导式、装饰器、异步函数、正则表达式等代码时使用。
★ 0 📥 671

Debugger

loutai0307-prog
分析错误、堆栈跟踪和日志以诊断根本原因并提供修复建议。用于调试 Python、Node.js、Go 或 Bash 错误,解读 Kubernetes...
★ 0 📥 709

Bytesagain Chart Generator

loutai0307-prog
在终端根据CSV或内联数据生成ASCII柱状图、折线图、饼图和散点图。用于可视化数据集、绘制趋势、比较数值等。
★ 0 📥 559