This is a small script thanks to which you can easily turn the branching dialogs you need into the pie-menu for interactive text insertion using tools kando or Fly-Pie.
just:
git clone https://github.com/maqmm/mtj.git
...and go to usage
cd mtj
python3 MDTOJSON.py -i path/to/input/md -o path/to/output/json
Flag | Description |
---|---|
files settings | |
-i , --input |
(required) Path to input .md file, details about structure this file here. |
-o , --output |
(required) Path to output .json file. |
--flypie |
Generate JSON menu for Fly-Pie, by default for kando. |
-p , --print |
Print output .json file with run cmd. |
menu settings | |
-n , --name |
Name for output menu, by default Converted menu . |
-e , --emoji |
Emoji for menu, by default 🥝. |
-sc , --shortcut |
Menu execite shortcut, by default NUM3. |
kando | Fly-Pie |
---|---|
![]() |
![]() |
In the case of kando, you need to find the menus.json configuration file. See the location for each OS here. Open it and add the converted menu separated by commas to the menus array, so your customized menus before will be saved. | In the case of Fly-Pie, we import the output file using the button on the screen, before doing this, do not forget to move the menu to stash so that they are saved, or upload them in advance using the export button (to the right of button 2). !!! BE SURE to use the flag --flypie to create a fly-pie menu |
This script accepts .md or any text file as input. Each line in such a file is a menu element. Which element is nested in which is determined by the number of indents (<\t>
), if there are 0 indents, you will see these elements when you open the menu, X indent will be nested in an element with X-1 indentation higher in the file.
Tag | Description |
---|---|
<enter> |
Replaced with \n in the final text, it serves to bypass the condition that one line = one menu item. |
<space> |
Replaced with a simple space ( ) in the final text, used to bypass parsing restrictions at the edges of the element (line). |
<i>🗿</i> |
Must contain an emoji, if specified in a line, then the element that declares this line will have such an emoji installed. By default uses 📂 for submenus and 📄 for last insert elements. |
<a>-1-359</a> |
The angle [-1 - 359] of the menu item. (If you specify -1, the element will be positioned automatically. In cando too, but the parameter will not be inserted into the element, so as not to observe locks-icons in the editor.) |
<t>TITLE</t> |
When using a tag, the text inside it is not used to summarize the final text from the sum of the texts of all parents. But the text inside it will be used to name the element. More details in the second example. |
<p>PERMANENT</p> |
The opposite of the <t>TITLE</t> tag. If this tag is present when summarizing the final text, ONLY its contents will be inserted (or the sum of their contents, if there are several of them). It is advisable to use it in finite elements, but no one limits it. |
Let's examples:
A
B
C
D
The simplest menu of four elements that have no indents, all of which will appear when the menu starts. Each line is a element,
A
1\n1
B
2<enter>2
<t>C</t>
3
3
<space><space><space><space>D
It is important that nesting of objects is done using tab indents, not spaces, because parsing occurs using \t
. Children will be nested in the parent with the lower padding level shown above. The element without children will be the final element of the insert, the others will be a menu with elements.
If you want to receive the same elements at each stage of selection, the easiest way is to copy copies of them under each parent element. But this script implements autocopying. The two examples below give the same result, but at what cost... =)
Tip
An unspoken rule follows from this. If you do not want to use autocopy, then it makes sense to place elements of the same level and one parent higher if they have children and lower if they do not. Since with two or more elements of the same level in a row, if the next ones have children, they will be copied to all elements (brothers) above.
![]() |
![]() |
---|---|
A 1 X Y Z 2 X Y Z 3 X Y Z B 1 X Y Z 2 X Y Z 3 X Y Z C 1 X Y Z 2 X Y Z 3 X Y Z |
a b c 1 2 3 x y z |
In such a simple example, we get 27 elements from 9 lines in the MD file, without having to repeat.
Warning
Simplification of the example. Autocopy does NOT work with first-level elements that have 0 indents. To simplify the example above, in each case the root element was used to increase the number of indents by 1.