You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -470,6 +471,32 @@ You can use the dot command (part of GraphViz) to turn this into a PNG graphic:
470
471
471
472
In the above example the parameter `vertical` was used to align the root nodes next to each other, with descendants down the page. \ If you specify any other value, for example 'horizontal' or '.' the alignment will be horizontal. (You can use `v` for short, for `vertical`.)
472
473
474
+
#### Indented Text
475
+
476
+
You can write out the data as a text file where indentation is used to denote levels in the tree hierarchy. \
477
+
Use the `indented` command to write out the text in this format. \
478
+
There are numerous options for how to indent the text:
479
+
480
+
* Code `original` to use the same indentation characters as on input. (This will only work if you read in an indented-text file; Otherwise the indentation will be an empty string.)
481
+
482
+
* Code `tab` to use the tab character to indent.
483
+
484
+
* Code `space:n` to use n spaces for each indentation level.
485
+
486
+
* Code `.` as a shorthand to indent using two spaces for each level.
487
+
488
+
* Code any other characters to use them for indentation.
will write out a file where four space characters are used for each level of indentation.
495
+
496
+
filterCSV < input.csv > output.txt indented "--"
497
+
498
+
will write out a file where two dashes are used for each level of indentation.
499
+
473
500
### iThoughts CSV File Format
474
501
475
502
The CSV format that iThoughts understands has a tree-like structure, within a table. As well as the tree of nodes, colour, position, node shape and other attributes of a node can be specified in the CSV file. To a very limited extent the format is documented [here](https://www.toketaware.com/ithoughts-howto-csv). A better way to understand the format is to export a mind map from iThoughts as CSV and look at the resulting file.
0 commit comments