https://github.com/desiquintans/vertextual
A web app for interactively creating directional networks and mindmaps by writing plain text
https://github.com/desiquintans/vertextual
domain-specific-language mindmapping network
Last synced: about 1 year ago
JSON representation
A web app for interactively creating directional networks and mindmaps by writing plain text
- Host: GitHub
- URL: https://github.com/desiquintans/vertextual
- Owner: DesiQuintans
- Created: 2019-03-15T12:33:45.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-07T02:07:28.000Z (about 7 years ago)
- Last Synced: 2025-02-06T12:48:03.108Z (over 1 year ago)
- Topics: domain-specific-language, mindmapping, network
- Language: R
- Homepage:
- Size: 104 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vertextual: Build directional networks and mindmaps from plain text
## Try it at
Vertextual is a tool for interactively drawing networks and
mindmaps by writing out the nodes and connections in a simple shorthand domain-
specific language (DSL).

---
In Vertextual, you build a network by naming its nodes and their edges
(connections). The first edge always has to be fully defined as
`Origin > Destination` like so:
Daydream > Idea
Each new edge goes on a new line. You can continue writing full definitions for
the rest of the edges, or you can reuse the last `Destination` node as the new
`Origin` by omitting the `Origin` from the new definition:
Daydream > Idea
> Sketch
> Prototype
Is identical to:
Daydream > Idea
Idea > Sketch
Sketch > Prototype
You can also reuse the last `Origin` as the new `Origin` with the operator `^`:
Daydream > Idea
^ Sketch
^ Prototype
Is identical to:
Daydream > Idea
Daydream > Sketch
Daydream > Prototype
You can name connections in any order. Duplicate connections and self-loops will be automatically removed.
---
Written in [R Shiny](https://shiny.rstudio.com/) by Desi Quintans, project began on 2019-03-16.