├── .air.toml ├── .cursor └── rules │ └── tests.mdc ├── .github ├── FUNDING.yml └── workflows │ ├── check-goreleaser.yaml │ ├── release.yaml │ └── test.yaml ├── .gitignore ├── .goreleaser.yaml ├── .pre-commit-config.yaml ├── .vscode └── launch.json ├── LICENSE ├── Makefile ├── PKGBUILD ├── README.md ├── cmd ├── arrow.go ├── direction.go ├── draw.go ├── graph.go ├── graph_test.go ├── mapping_edge.go ├── mapping_node.go ├── math.go ├── parse.go ├── root.go ├── testdata │ ├── ascii │ │ ├── ampersand_lhs.txt │ │ ├── ampersand_lhs_and_rhs.txt │ │ ├── ampersand_rhs.txt │ │ ├── ampersand_without_edge.txt │ │ ├── back_reference_from_child.txt │ │ ├── backlink_from_bottom.txt │ │ ├── backlink_from_top.txt │ │ ├── backlink_with_short_y_padding.txt │ │ ├── comments.txt │ │ ├── custom_padding.txt │ │ ├── preserve_order_of_definition.txt │ │ ├── self_reference.txt │ │ ├── self_reference_with_edge.txt │ │ ├── single_node.txt │ │ ├── single_node_longer_name.txt │ │ ├── subgraph_complex_mixed.txt │ │ ├── subgraph_complex_nested.txt │ │ ├── subgraph_empty.txt │ │ ├── subgraph_mixed_nodes.txt │ │ ├── subgraph_mixed_nodes_td.txt │ │ ├── subgraph_multiple_edges.txt │ │ ├── subgraph_multiple_nodes.txt │ │ ├── subgraph_nested.txt │ │ ├── subgraph_nested_with_external.txt │ │ ├── subgraph_node_outside_lr.txt │ │ ├── subgraph_single_node.txt │ │ ├── subgraph_td_direction.txt │ │ ├── subgraph_td_multiple.txt │ │ ├── subgraph_td_multiple_paddingy.txt │ │ ├── subgraph_three_levels_nested.txt │ │ ├── subgraph_three_separate.txt │ │ ├── subgraph_two_separate.txt │ │ ├── subgraph_with_labels.txt │ │ ├── three_nodes.txt │ │ ├── three_nodes_single_line.txt │ │ ├── two_layer_single_graph.txt │ │ ├── two_layer_single_graph_longer_names.txt │ │ ├── two_nodes_linked.txt │ │ ├── two_nodes_longer_names.txt │ │ ├── two_root_nodes.txt │ │ ├── two_root_nodes_longer_names.txt │ │ └── two_single_root_nodes.txt │ └── extended-chars │ │ ├── ampersand_lhs.txt │ │ ├── ampersand_lhs_and_rhs.txt │ │ ├── ampersand_rhs.txt │ │ ├── ampersand_without_edge.txt │ │ ├── back_reference_from_child.txt │ │ ├── backlink_from_bottom.txt │ │ ├── backlink_from_top.txt │ │ ├── comments.txt │ │ ├── preserve_order_of_definition.txt │ │ ├── self_reference.txt │ │ ├── self_reference_with_edge.txt │ │ ├── single_node.txt │ │ ├── single_node_longer_name.txt │ │ ├── three_nodes.txt │ │ ├── three_nodes_single_line.txt │ │ ├── two_layer_single_graph.txt │ │ ├── two_layer_single_graph_longer_names.txt │ │ ├── two_nodes_linked.txt │ │ ├── two_nodes_longer_names.txt │ │ ├── two_root_nodes.txt │ │ ├── two_root_nodes_longer_names.txt │ │ └── two_single_root_nodes.txt └── web.go ├── docs └── colored_graph.png ├── flake.lock ├── flake.nix ├── go.mod ├── go.sum ├── main.go ├── scripts ├── fix_test.sh └── release.sh └── templates └── index.tmpl /.air.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/.air.toml -------------------------------------------------------------------------------- /.cursor/rules/tests.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/.cursor/rules/tests.mdc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/check-goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/.github/workflows/check-goreleaser.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/Makefile -------------------------------------------------------------------------------- /PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/PKGBUILD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/README.md -------------------------------------------------------------------------------- /cmd/arrow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/arrow.go -------------------------------------------------------------------------------- /cmd/direction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/direction.go -------------------------------------------------------------------------------- /cmd/draw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/draw.go -------------------------------------------------------------------------------- /cmd/graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/graph.go -------------------------------------------------------------------------------- /cmd/graph_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/graph_test.go -------------------------------------------------------------------------------- /cmd/mapping_edge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/mapping_edge.go -------------------------------------------------------------------------------- /cmd/mapping_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/mapping_node.go -------------------------------------------------------------------------------- /cmd/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/math.go -------------------------------------------------------------------------------- /cmd/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/parse.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/testdata/ascii/ampersand_lhs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/ampersand_lhs.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/ampersand_lhs_and_rhs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/ampersand_lhs_and_rhs.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/ampersand_rhs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/ampersand_rhs.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/ampersand_without_edge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/ampersand_without_edge.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/back_reference_from_child.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/back_reference_from_child.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/backlink_from_bottom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/backlink_from_bottom.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/backlink_from_top.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/backlink_from_top.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/backlink_with_short_y_padding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/backlink_with_short_y_padding.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/comments.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/custom_padding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/custom_padding.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/preserve_order_of_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/preserve_order_of_definition.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/self_reference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/self_reference.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/self_reference_with_edge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/self_reference_with_edge.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/single_node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/single_node.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/single_node_longer_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/single_node_longer_name.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/subgraph_complex_mixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/subgraph_complex_mixed.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/subgraph_complex_nested.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/subgraph_complex_nested.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/subgraph_empty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/subgraph_empty.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/subgraph_mixed_nodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/subgraph_mixed_nodes.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/subgraph_mixed_nodes_td.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/subgraph_mixed_nodes_td.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/subgraph_multiple_edges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/subgraph_multiple_edges.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/subgraph_multiple_nodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/subgraph_multiple_nodes.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/subgraph_nested.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/subgraph_nested.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/subgraph_nested_with_external.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/subgraph_nested_with_external.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/subgraph_node_outside_lr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/subgraph_node_outside_lr.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/subgraph_single_node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/subgraph_single_node.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/subgraph_td_direction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/subgraph_td_direction.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/subgraph_td_multiple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/subgraph_td_multiple.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/subgraph_td_multiple_paddingy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/subgraph_td_multiple_paddingy.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/subgraph_three_levels_nested.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/subgraph_three_levels_nested.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/subgraph_three_separate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/subgraph_three_separate.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/subgraph_two_separate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/subgraph_two_separate.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/subgraph_with_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/subgraph_with_labels.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/three_nodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/three_nodes.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/three_nodes_single_line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/three_nodes_single_line.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/two_layer_single_graph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/two_layer_single_graph.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/two_layer_single_graph_longer_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/two_layer_single_graph_longer_names.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/two_nodes_linked.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/two_nodes_linked.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/two_nodes_longer_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/two_nodes_longer_names.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/two_root_nodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/two_root_nodes.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/two_root_nodes_longer_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/two_root_nodes_longer_names.txt -------------------------------------------------------------------------------- /cmd/testdata/ascii/two_single_root_nodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/ascii/two_single_root_nodes.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/ampersand_lhs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/ampersand_lhs.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/ampersand_lhs_and_rhs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/ampersand_lhs_and_rhs.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/ampersand_rhs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/ampersand_rhs.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/ampersand_without_edge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/ampersand_without_edge.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/back_reference_from_child.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/back_reference_from_child.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/backlink_from_bottom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/backlink_from_bottom.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/backlink_from_top.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/backlink_from_top.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/comments.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/preserve_order_of_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/preserve_order_of_definition.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/self_reference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/self_reference.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/self_reference_with_edge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/self_reference_with_edge.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/single_node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/single_node.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/single_node_longer_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/single_node_longer_name.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/three_nodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/three_nodes.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/three_nodes_single_line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/three_nodes_single_line.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/two_layer_single_graph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/two_layer_single_graph.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/two_layer_single_graph_longer_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/two_layer_single_graph_longer_names.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/two_nodes_linked.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/two_nodes_linked.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/two_nodes_longer_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/two_nodes_longer_names.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/two_root_nodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/two_root_nodes.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/two_root_nodes_longer_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/two_root_nodes_longer_names.txt -------------------------------------------------------------------------------- /cmd/testdata/extended-chars/two_single_root_nodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/testdata/extended-chars/two_single_root_nodes.txt -------------------------------------------------------------------------------- /cmd/web.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/cmd/web.go -------------------------------------------------------------------------------- /docs/colored_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/docs/colored_graph.png -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/flake.nix -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/main.go -------------------------------------------------------------------------------- /scripts/fix_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/scripts/fix_test.sh -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /templates/index.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderGrooff/mermaid-ascii/HEAD/templates/index.tmpl --------------------------------------------------------------------------------