-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTutorial-o-MaticStepByStep.mm
3528 lines (3371 loc) · 169 KB
/
Tutorial-o-MaticStepByStep.mm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<map version="freeplane 1.9.13">
<!--To view this file, download free mind mapping software Freeplane from https://www.freeplane.org -->
<attribute_registry SHOW_ATTRIBUTES="selected">
<attribute_name VISIBLE="true" NAME="ToM_TabLabel"/>
</attribute_registry>
<node TEXT="Tutorial-o-Matic
Step by Step" LOCALIZED_STYLE_REF="AutomaticLayout.level.root" FOLDED="false" ID="ID_1090958577" CREATED="1659829036529" MODIFIED="1659829036529" LINK="menuitem:_addons.tutorialOMatic.showTutorialsFromActiveMap_on_single_node"><hook NAME="MapStyle" background="#2e3440" zoom="0.798">
<conditional_styles>
<conditional_style ACTIVE="true" STYLE_REF="GroovyNode" LAST="false">
<script_condition>
<script>try { edofro.freeplane.groovynode.GN.isGroovyNode(node) } catch(e) { false }</script>
</script_condition>
</conditional_style>
<conditional_style ACTIVE="true" STYLE_REF="hasGroovyNode" LAST="false">
<script_condition>
<script>(node.findAll() - node).any{
edofro.freeplane.groovynode.GN.isGroovyNode(it)
}</script>
</script_condition>
</conditional_style>
<conditional_style ACTIVE="false" STYLE_REF="hasGroovyNode" LAST="false">
<any_descendant_condition>
<script_condition>
<script>try { edofro.freeplane.groovynode.GN.isGroovyNode(node) } catch(e) { false }</script>
</script_condition>
</any_descendant_condition>
</conditional_style>
</conditional_styles>
<properties edgeColorConfiguration="#808080ff,#ff0000ff,#0000ffff,#00ff00ff,#ff00ffff,#00ffffff,#7c0000ff,#00007cff,#007c00ff,#7c007cff,#007c7cff,#7c7c00ff" mapUsesOwnSaveOptions="true" mdhCleanMindmapExportDate="2022-08-08 13:34:33.258-0400" associatedTemplateLocation="template:/dark_nord_template.mm" show_icon_for_attributes="true" mdhCleanMindmapPath="C:\Users\Edo\Documents\GitHub\Freeplane_Tutorial_AddOn\Tutorial-o-Matic\zips\doc\Tutorial-o-Matic\Tutorial-o-MaticStepByStep.mm" show_notes_in_map="false" save_modification_times="false" save_last_visited_node="default" show_note_icons="true" save_folding="save_folding_if_map_is_changed" fit_to_viewport="false"/>
<map_styles>
<stylenode LOCALIZED_TEXT="styles.root_node" ID="ID_1059101550" STYLE="oval" UNIFORM_SHAPE="true" VGAP_QUANTITY="24 pt">
<font SIZE="24"/>
<stylenode LOCALIZED_TEXT="styles.predefined" POSITION="right" STYLE="bubble">
<stylenode LOCALIZED_TEXT="default" ID="ID_671184412" ICON_SIZE="12 pt" FORMAT_AS_HYPERLINK="false" COLOR="#484747" BACKGROUND_COLOR="#eceff4" STYLE="bubble" SHAPE_HORIZONTAL_MARGIN="8 pt" SHAPE_VERTICAL_MARGIN="5 pt" NUMBERED="false" FORMAT="STANDARD_FORMAT" TEXT_ALIGN="DEFAULT" BORDER_WIDTH_LIKE_EDGE="false" BORDER_WIDTH="1.9 px" BORDER_COLOR_LIKE_EDGE="true" BORDER_COLOR="#f0f0f0" BORDER_DASH_LIKE_EDGE="true" BORDER_DASH="SOLID" MAX_WIDTH="10 cm" MIN_WIDTH="0 cm" VGAP_QUANTITY="2 pt">
<arrowlink SHAPE="CUBIC_CURVE" COLOR="#88c0d0" WIDTH="2" TRANSPARENCY="255" DASH="" FONT_SIZE="9" FONT_FAMILY="SansSerif" DESTINATION="ID_671184412" STARTARROW="NONE" ENDARROW="DEFAULT"/>
<font NAME="SansSerif" SIZE="11" BOLD="false" STRIKETHROUGH="false" ITALIC="false"/>
<edge STYLE="bezier" COLOR="#81a1c1" WIDTH="3" DASH="SOLID"/>
<richcontent CONTENT-TYPE="plain/auto" TYPE="DETAILS"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/auto"/>
</stylenode>
<stylenode LOCALIZED_TEXT="defaultstyle.details" BORDER_WIDTH="1.9 px">
<edge STYLE="bezier" COLOR="#81a1c1" WIDTH="3"/>
</stylenode>
<stylenode LOCALIZED_TEXT="defaultstyle.attributes" ID="ID_1393104014" COLOR="#666666">
<font SIZE="10"/>
</stylenode>
<stylenode LOCALIZED_TEXT="defaultstyle.note" COLOR="#000000" BACKGROUND_COLOR="#ebcb8b">
<icon BUILTIN="clock2"/>
<font SIZE="10"/>
</stylenode>
<stylenode LOCALIZED_TEXT="defaultstyle.floating" COLOR="#484747">
<edge STYLE="hide_edge"/>
<cloud COLOR="#f0f0f0" SHAPE="ROUND_RECT"/>
</stylenode>
<stylenode LOCALIZED_TEXT="defaultstyle.selection" COLOR="#e5e9f0" BACKGROUND_COLOR="#5e81ac" BORDER_COLOR_LIKE_EDGE="false" BORDER_COLOR="#5e81ac"/>
</stylenode>
<stylenode LOCALIZED_TEXT="styles.user-defined" POSITION="right" STYLE="bubble">
<stylenode LOCALIZED_TEXT="styles.important" ID="ID_779275544" BORDER_COLOR_LIKE_EDGE="false" BORDER_COLOR="#bf616a">
<icon BUILTIN="yes"/>
<arrowlink COLOR="#bf616a" TRANSPARENCY="255" DESTINATION="ID_779275544"/>
<font SIZE="14"/>
</stylenode>
<stylenode TEXT="markdownNote" BORDER_COLOR="#808080">
<icon BUILTIN="edit"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/markdown"/>
</stylenode>
<stylenode TEXT="ToM-Tutorial" ID="ID_1651123932" ICON_SIZE="24 pt" COLOR="#000000" BACKGROUND_COLOR="#fbcbbc" STYLE="rectangle" BORDER_WIDTH="3 px">
<icon BUILTIN="emoji-1F989"/>
<attribute NAME="ToM_TabLabel" VALUE=" "/>
<cloud COLOR="#f2ded8" SHAPE="ROUND_RECT"/>
</stylenode>
<stylenode TEXT="ToM_TOC" ICON_SIZE="16 pt" COLOR="#000000" BACKGROUND_COLOR="#f5ff95" STYLE="rectangle" BORDER_WIDTH="3 px">
<icon BUILTIN="emoji-1F989"/>
<icon BUILTIN="emoji-25B6"/>
</stylenode>
<stylenode TEXT="ToM_newPage" ICON_SIZE="16 pt" COLOR="#000000" BACKGROUND_COLOR="#95d9ff" STYLE="rectangle" BORDER_WIDTH="3 px">
<icon BUILTIN="emoji-1F989"/>
<icon BUILTIN="emoji-25B6"/>
</stylenode>
<stylenode TEXT="ToM_nextPage" ICON_SIZE="16 pt" COLOR="#000000" BACKGROUND_COLOR="#ff9595" STYLE="rectangle" BORDER_WIDTH="3 px">
<icon BUILTIN="emoji-1F989"/>
<icon BUILTIN="emoji-25B6"/>
</stylenode>
<stylenode TEXT="ToM_note" ICON_SIZE="16 pt" STYLE="rectangle" BORDER_WIDTH="3 px">
<icon BUILTIN="emoji-1F989"/>
<icon BUILTIN="emoji-1F4F0"/>
<cloud COLOR="#f9f9b9" SHAPE="ROUND_RECT"/>
</stylenode>
<stylenode TEXT="ToM_showMenu" ICON_SIZE="16 pt" STYLE="rectangle" BORDER_WIDTH="3 px">
<icon BUILTIN="emoji-1F989"/>
<icon BUILTIN="emoji-1F5B1"/>
<cloud COLOR="#f9f9b9" SHAPE="ROUND_RECT"/>
</stylenode>
<stylenode TEXT="ToM_goto" ICON_SIZE="16 pt" STYLE="rectangle" BORDER_WIDTH="3 px">
<icon BUILTIN="emoji-1F989"/>
<icon BUILTIN="emoji-2197"/>
<cloud COLOR="#f9f9b9" SHAPE="ROUND_RECT"/>
</stylenode>
<stylenode TEXT="ToM_menuAction" ICON_SIZE="16 pt" STYLE="rectangle" BORDER_WIDTH="3 px">
<icon BUILTIN="emoji-1F989"/>
<icon BUILTIN="emoji-1F525"/>
<cloud COLOR="#f9f9b9" SHAPE="ROUND_RECT"/>
</stylenode>
<stylenode TEXT="ToM_groovy" ICON_SIZE="16 pt" STYLE="rectangle" BORDER_WIDTH="3 px">
<icon BUILTIN="emoji-1F989"/>
<icon BUILTIN="emoji-1F951"/>
<cloud COLOR="#f9f9b9" SHAPE="ROUND_RECT"/>
</stylenode>
<stylenode TEXT="ToM_copy" ICON_SIZE="16 pt" STYLE="rectangle" BORDER_WIDTH="3 px">
<icon BUILTIN="emoji-1F989"/>
<icon BUILTIN="emoji-1F4CB"/>
<cloud COLOR="#f9f9b9" SHAPE="ROUND_RECT"/>
</stylenode>
<stylenode TEXT="ToM_select" ICON_SIZE="16 pt" STYLE="rectangle" BORDER_WIDTH="3 px">
<icon BUILTIN="emoji-1F989"/>
<icon BUILTIN="emoji-2B55"/>
<cloud COLOR="#f9f9b9" SHAPE="ROUND_RECT"/>
</stylenode>
<stylenode TEXT="ToM_openMap" ICON_SIZE="16 pt" STYLE="rectangle" BORDER_WIDTH="3 px">
<icon BUILTIN="emoji-1F989"/>
<icon BUILTIN="mindmap"/>
<cloud COLOR="#f9f9b9" SHAPE="ROUND_RECT"/>
</stylenode>
<stylenode TEXT="ToM_openTutMap" ICON_SIZE="16 pt" STYLE="rectangle" BORDER_WIDTH="3 px">
<icon BUILTIN="emoji-1F989"/>
<icon BUILTIN="links/file/freeplane_mindmap"/>
<cloud COLOR="#f9f9b9" SHAPE="ROUND_RECT"/>
</stylenode>
<stylenode TEXT="ToM_showNode" ICON_SIZE="16 pt" STYLE="rectangle" BORDER_WIDTH="3 px">
<icon BUILTIN="emoji-1F989"/>
<icon BUILTIN="emoji-1F517"/>
<cloud COLOR="#f9f9b9" SHAPE="ROUND_RECT"/>
</stylenode>
<stylenode TEXT="MarkdownHelperNode" ID="ID_523207171" COLOR="#dbffdb" BACKGROUND_COLOR="#333333" STYLE="rectangle" BORDER_WIDTH="4 px" BORDER_COLOR_LIKE_EDGE="false" BORDER_COLOR="#009000">
<icon BUILTIN="emoji-1F343"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/markdown"/>
</stylenode>
<stylenode TEXT="MarkdownHelperLink" ID="ID_1342095062" COLOR="#dbffdb" BACKGROUND_COLOR="#4c4c7f" STYLE="rectangle" BORDER_WIDTH="4 px" BORDER_COLOR_LIKE_EDGE="false" BORDER_COLOR="#009000">
<icon BUILTIN="emoji-1F517"/>
</stylenode>
<stylenode TEXT="MarkdownHelperPreview" ID="ID_1010348324" COLOR="#333333" BACKGROUND_COLOR="#ffffff">
<font NAME="Tahoma" SIZE="14"/>
<hook NAME="NodeCss">pre {
background-color: #e5e7ff;
border-left: 5px solid #ccc;
display: block;
padding: 8px;
margin: 5px;
}
code {
font-family: Consolas,"courier new";
font-size: 11px;
color: #999;
}
blockquote {
border-left: 5px solid #cccccc;
background-color: #eeeeee;
padding: 8px;
}</hook>
</stylenode>
<stylenode TEXT="ToM_openTutPage" ID="ID_728805680" ICON_SIZE="16 pt" STYLE="rectangle" BORDER_WIDTH="3 px">
<icon BUILTIN="emoji-1F989"/>
<icon BUILTIN="emoji-1F4D6"/>
<cloud COLOR="#f9f9b9" SHAPE="ROUND_RECT"/>
</stylenode>
<stylenode TEXT="nextTask" ID="ID_586564045" BACKGROUND_COLOR="#ffff33">
<icon BUILTIN="yes"/>
<icon BUILTIN="unchecked"/>
</stylenode>
<stylenode TEXT="pendingTask" ID="ID_1556373004" BACKGROUND_COLOR="#99ffff">
<icon BUILTIN="unchecked"/>
</stylenode>
<stylenode TEXT="completedTask" ID="ID_1763705856" COLOR="#333333" BACKGROUND_COLOR="#cccccc">
<icon BUILTIN="checked"/>
<font ITALIC="true"/>
</stylenode>
<stylenode TEXT="discardedTask" ID="ID_1018166202" COLOR="#666666" BACKGROUND_COLOR="#cccccc">
<icon BUILTIN="Descartado"/>
<font ITALIC="true"/>
</stylenode>
<stylenode TEXT="containsNextTasks" ID="ID_1568408403" BACKGROUND_COLOR="#eaea86">
<icon BUILTIN="emoji-1F7E5"/>
</stylenode>
<stylenode TEXT="containsPendingTasks" ID="ID_1166882073" BACKGROUND_COLOR="#b5d7d7">
<icon BUILTIN="emoji-23F9"/>
</stylenode>
<stylenode TEXT="GroovyNode" ICON_SIZE="16 pt" COLOR="#286b86" BACKGROUND_COLOR="#92c5d7" STYLE="bubble" BORDER_COLOR_LIKE_EDGE="false" BORDER_COLOR="#286b86">
<icon BUILTIN="groovyNode/groovy-G"/>
<font NAME="Harlow Solid Italic" SIZE="12"/>
</stylenode>
<stylenode TEXT="hasGroovyNode">
<icon BUILTIN="groovyNode/groovy-G"/>
</stylenode>
</stylenode>
<stylenode LOCALIZED_TEXT="styles.AutomaticLayout" POSITION="right" STYLE="bubble">
<stylenode LOCALIZED_TEXT="AutomaticLayout.level.root" ID="ID_1397792216" COLOR="#ffffff" BACKGROUND_COLOR="#484747" STYLE="bubble" SHAPE_HORIZONTAL_MARGIN="10 pt" SHAPE_VERTICAL_MARGIN="10 pt">
<font NAME="Ubuntu" SIZE="18"/>
</stylenode>
<stylenode LOCALIZED_TEXT="AutomaticLayout.level,1" COLOR="#eceff4" BACKGROUND_COLOR="#d08770" STYLE="bubble" SHAPE_HORIZONTAL_MARGIN="8 pt" SHAPE_VERTICAL_MARGIN="5 pt">
<font NAME="Ubuntu" SIZE="16"/>
</stylenode>
<stylenode LOCALIZED_TEXT="AutomaticLayout.level,2" COLOR="#3b4252" BACKGROUND_COLOR="#ebcb8b">
<font SIZE="14"/>
</stylenode>
<stylenode LOCALIZED_TEXT="AutomaticLayout.level,3" COLOR="#2e3440" BACKGROUND_COLOR="#a3be8c">
<font SIZE="12"/>
</stylenode>
<stylenode LOCALIZED_TEXT="AutomaticLayout.level,4" COLOR="#2e3440" BACKGROUND_COLOR="#b48ead">
<font SIZE="11"/>
</stylenode>
<stylenode LOCALIZED_TEXT="AutomaticLayout.level,5" BACKGROUND_COLOR="#81a1c1">
<font SIZE="10"/>
</stylenode>
<stylenode LOCALIZED_TEXT="AutomaticLayout.level,6" BACKGROUND_COLOR="#88c0d0">
<font SIZE="10"/>
</stylenode>
<stylenode LOCALIZED_TEXT="AutomaticLayout.level,7" BACKGROUND_COLOR="#8fbcbb">
<font SIZE="10"/>
</stylenode>
<stylenode LOCALIZED_TEXT="AutomaticLayout.level,8" BACKGROUND_COLOR="#d8dee9">
<font SIZE="10"/>
</stylenode>
<stylenode LOCALIZED_TEXT="AutomaticLayout.level,9" BACKGROUND_COLOR="#e5e9f0">
<font SIZE="9"/>
</stylenode>
<stylenode LOCALIZED_TEXT="AutomaticLayout.level,10" BACKGROUND_COLOR="#eceff4">
<font SIZE="9"/>
</stylenode>
</stylenode>
</stylenode>
</map_styles>
</hook>
<hook NAME="accessories/plugins/AutomaticLayout.properties" VALUE="ALL"/>
<font BOLD="true"/>
<attribute_layout NAME_WIDTH="84.75 pt" VALUE_WIDTH="99 pt"/>
<attribute NAME="ToM_TabLabel" VALUE="ToM Step by step"/>
<node TEXT="Introduction" STYLE_REF="ToM-Tutorial" FOLDED="true" POSITION="right" ID="ID_839819820" CREATED="1659829036529" MODIFIED="1659829036529">
<icon BUILTIN="emoji-1F58D"/>
<attribute_layout NAME_WIDTH="84.75 pt" VALUE_WIDTH="88.5 pt"/>
<attribute NAME="ToM_TabLabel" VALUE="ToM Step by step"/>
<node TEXT="greetings" ID="ID_26985145" CREATED="1659829036529" MODIFIED="1659829036529">
<font SIZE="14"/>
<node TEXT="Introduction" STYLE_REF="ToM_newPage" ID="ID_1522236279" CREATED="1659829036529" MODIFIED="1659829036529"/>
<node TEXT="text" STYLE_REF="ToM_note" ID="ID_365713608" CREATED="1659829036529" MODIFIED="1659829036529">
<node TEXT="Markdown document.md" STYLE_REF="MarkdownHelperNode" ID="ID_1169231456" CREATED="1659829036529" MODIFIED="1659829036529">
<attribute NAME="headersToUnderline" VALUE="0" OBJECT="org.freeplane.features.format.FormattedNumber|0|#0.####"/>
<attribute NAME="hideFolded" VALUE="false"/>
<attribute NAME="headerNumbering" VALUE="true"/>
<attribute NAME="topHeadersNumbered" VALUE="false"/>
<attribute NAME="topHeaderStartingNumber" VALUE="1" OBJECT="org.freeplane.features.format.FormattedNumber|1"/>
<attribute NAME="fileLinksRelative" VALUE="false"/>
<attribute NAME="lineOverHeader" VALUE="true"/>
<attribute NAME="ignoreHeaderDetails" VALUE="true"/>
<attribute NAME="ignoreHeaderNotes" VALUE="true"/>
<attribute NAME="ignoreLeafDetails" VALUE="false"/>
<attribute NAME="ignoreHeaderImageObjects" VALUE="false"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>=edofro.MarkDownHelper.MDH.document(node)</text>
</richcontent>
<node TEXT="Tutorial-o-Matic Step by Step" ID="ID_1448456088" CREATED="1659829036529" MODIFIED="1659829036529">
<node TEXT="This guide contains step by step tutorials to learn hands on how to build tutorials using **Tutorial-o-Matic**" ID="ID_1640206453" CREATED="1659829036529" MODIFIED="1659829036529"/>
<node TEXT="list" STYLE_REF="MarkdownHelperNode" ID="ID_778182605" CREATED="1659829036529" MODIFIED="1659829036529">
<icon BUILTIN="emoji-1F522"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="xml/">
<html>
<head>
</head>
<body>
<p>
= edofro.MarkDownHelper.MDH.list(node)
</p>
</body>
</html></richcontent>
<node TEXT="new map with a basic tutorial" ID="ID_1603808704" CREATED="1659829036529" MODIFIED="1659829036529"/>
<node TEXT="adding a tutorial to an existing map" ID="ID_1951675340" CREATED="1659829036529" MODIFIED="1659829036529"/>
<node TEXT="a tutorial with multiple pages" ID="ID_1051360951" CREATED="1659829036529" MODIFIED="1659829036529"/>
<node TEXT="adding actions (pending)" ID="ID_546147165" CREATED="1659829036529" MODIFIED="1659978989818"/>
</node>
</node>
</node>
</node>
</node>
<node TEXT="about the tutorials" ID="ID_518514585" CREATED="1659829036529" MODIFIED="1659829036529">
<node TEXT="GOTO" STYLE_REF="ToM_goto" ID="ID_1175739617" CREATED="1659829036529" MODIFIED="1659829036529">
<node TEXT="Tutorial 1" STYLE_REF="markdownNote" ID="ID_927293905" CREATED="1659829036529" MODIFIED="1659978542331" LINK="#ID_511509268"><richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>## 1. Create a basic tutorial in a new mindmap

In this tutorial you will learn how to create a 
new map containing a one page tutorial.</text>
</richcontent>
</node>
<node TEXT="Tutorial 2" STYLE_REF="markdownNote" ID="ID_1208564371" CREATED="1659829036529" MODIFIED="1659978759199" LINK="#ID_1138179206"><richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>## 2. Adding a basic tutorial to an existing mindmap

In this tutorial you will learn how to set 
an existing mindmap to contain a one page tutorial.</text>
</richcontent>
</node>
<node TEXT="Tutorial 3" STYLE_REF="markdownNote" ID="ID_1658972090" CREATED="1659829036529" MODIFIED="1659978940170" LINK="#ID_243365661"><richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>## 3. Organizing a tutorial in multiple pages

In this tutorial you will learn how 
to divide a long tutorial into pages.
</text>
</richcontent>
</node>
</node>
</node>
</node>
<node TEXT="Tutorial 1: one page tutorial in a new mindmap" STYLE_REF="ToM-Tutorial" FOLDED="true" POSITION="right" ID="ID_511509268" CREATED="1659829036529" MODIFIED="1659829036529">
<icon BUILTIN="emoji-1F58D"/>
<attribute NAME="ToM_TabLabel" VALUE=" ToM tut 1"/>
<node TEXT="one page tutorial in a new mindmap" ID="ID_1377645550" CREATED="1659829036529" MODIFIED="1659829036529">
<node TEXT="Create a new mind map ready to contain tutorials" STYLE_REF="ToM_newPage" FOLDED="true" ID="ID_357294588" CREATED="1659829036529" MODIFIED="1659829036529">
<node TEXT="text" STYLE_REF="ToM_note" ID="ID_581981021" CREATED="1659829036529" MODIFIED="1659829036529">
<node TEXT="in this tutorial ..." STYLE_REF="MarkdownHelperNode" ID="ID_763888244" CREATED="1659829036529" MODIFIED="1659829036529">
<attribute NAME="headersToUnderline" VALUE="0" OBJECT="org.freeplane.features.format.FormattedNumber|0"/>
<attribute NAME="hideFolded" VALUE="false"/>
<attribute NAME="headerNumbering" VALUE="false"/>
<attribute NAME="topHeadersNumbered" VALUE="false"/>
<attribute NAME="topHeaderStartingNumber" VALUE="1" OBJECT="org.freeplane.features.format.FormattedNumber|1"/>
<attribute NAME="fileLinksRelative" VALUE="false"/>
<attribute NAME="lineOverHeader" VALUE="true"/>
<attribute NAME="ignoreHeaderDetails" VALUE="true"/>
<attribute NAME="ignoreHeaderNotes" VALUE="true"/>
<attribute NAME="ignoreLeafDetails" VALUE="false"/>
<attribute NAME="ignoreHeaderImageObjects" VALUE="false"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>= edofro.MarkDownHelper.MDH.document(node)</text>
</richcontent>
<node TEXT="In this tutorial:" ID="ID_742064292" CREATED="1659829036529" MODIFIED="1659829036529">
<node TEXT="In this tutorial you will learn how to build a one page tutorial into a new mind map." ID="ID_1526919997" CREATED="1659829036529" MODIFIED="1659829036529"/>
</node>
</node>
<node TEXT="general..." STYLE_REF="MarkdownHelperNode" ID="ID_986725795" CREATED="1659829036529" MODIFIED="1659829036529">
<attribute NAME="headersToUnderline" VALUE="0" OBJECT="org.freeplane.features.format.FormattedNumber|0|#0.####"/>
<attribute NAME="hideFolded" VALUE="false"/>
<attribute NAME="headerNumbering" VALUE="true"/>
<attribute NAME="topHeadersNumbered" VALUE="false"/>
<attribute NAME="topHeaderStartingNumber" VALUE="1" OBJECT="org.freeplane.features.format.FormattedNumber|1"/>
<attribute NAME="fileLinksRelative" VALUE="false"/>
<attribute NAME="lineOverHeader" VALUE="true"/>
<attribute NAME="ignoreHeaderDetails" VALUE="true"/>
<attribute NAME="ignoreHeaderNotes" VALUE="true"/>
<attribute NAME="ignoreLeafDetails" VALUE="false"/>
<attribute NAME="ignoreHeaderImageObjects" VALUE="false"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>=edofro.MarkDownHelper.MDH.document(node)</text>
</richcontent>
<node TEXT="How does ToM works?" ID="ID_729569121" CREATED="1659829036529" MODIFIED="1659829036529">
<node TEXT="general explanation" STYLE_REF="markdownNote" ID="ID_787197159" CREATED="1659829036529" MODIFIED="1659829036529"><richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>**Tutorial-o-Matic** use mindmaps to store the tutorial's information.
To understand how to display a tutorial and its structure **Tutorial-o-Matic** needs that the map has some _special user styles_.
It looks after the nodes that have such styles and builds the pages of the tutorials by using those nodes and their children information.
All other nodes are ignored and you can use them to organize your tutorial, add notes and other information that won't be shown in the tutorial.
</text>
</richcontent>
</node>
</node>
</node>
</node>
<node TEXT="create new map" ID="ID_987697295" CREATED="1659829036529" MODIFIED="1659829036529">
<node TEXT="text" STYLE_REF="ToM_note" ID="ID_498738696" CREATED="1659829036529" MODIFIED="1659829036529">
<node TEXT="new mind map" STYLE_REF="MarkdownHelperNode" ID="ID_907847778" CREATED="1659829036529" MODIFIED="1659829036529">
<attribute NAME="headersToUnderline" VALUE="0" OBJECT="org.freeplane.features.format.FormattedNumber|0|#0.####"/>
<attribute NAME="hideFolded" VALUE="false"/>
<attribute NAME="headerNumbering" VALUE="true"/>
<attribute NAME="topHeadersNumbered" VALUE="false"/>
<attribute NAME="topHeaderStartingNumber" VALUE="1" OBJECT="org.freeplane.features.format.FormattedNumber|1"/>
<attribute NAME="fileLinksRelative" VALUE="false"/>
<attribute NAME="lineOverHeader" VALUE="true"/>
<attribute NAME="ignoreHeaderDetails" VALUE="true"/>
<attribute NAME="ignoreHeaderNotes" VALUE="true"/>
<attribute NAME="ignoreLeafDetails" VALUE="false"/>
<attribute NAME="ignoreHeaderImageObjects" VALUE="false"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>=edofro.MarkDownHelper.MDH.document(node)</text>
</richcontent>
<node TEXT="Creating a new mind map" FOLDED="true" ID="ID_742719832" CREATED="1659829036529" MODIFIED="1659829036529">
<node TEXT="to create new mind map" STYLE_REF="markdownNote" ID="ID_998082200" CREATED="1659829036529" MODIFIED="1659829036529"><richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>To create a new mindmap that has the styles
needed to build a tutorial using **Tutorial-o-Matic** , you can use
the command "**Create new tutorial mind map**".
You can get the same result by creating a new map using the "tutorial_styles_template" as template map.</text>
</richcontent>
</node>
</node>
</node>
</node>
<node TEXT="show menu commands" STYLE_REF="ToM_showMenu" ID="ID_1638139424" CREATED="1659829036529" MODIFIED="1659829036529"><richcontent TYPE="NOTE" CONTENT-TYPE="plain/markdown"/>
<node TEXT="Create new tutorial mind map" ID="ID_658255605" CREATED="1659829036529" MODIFIED="1659829036529" LINK="menuitem:_addons.tutorialOMatic.createNewTutorialMindMap_on_single_node">
<icon BUILTIN="emoji-1F525"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/markdown">
<text>## Step 1: create a new tutorial able mind map
You can do it yourself by clicking the menu command,
or click the 'Execute' button to let ToM do it for you.
</text>
</richcontent>
</node>
</node>
</node>
<node TEXT="text" STYLE_REF="ToM_note" ID="ID_659593500" CREATED="1659829036529" MODIFIED="1659829036529">
<node TEXT="Markdown document.md" STYLE_REF="MarkdownHelperNode" ID="ID_628645030" CREATED="1659829036529" MODIFIED="1659829036529">
<attribute NAME="headersToUnderline" VALUE="0" OBJECT="org.freeplane.features.format.FormattedNumber|0"/>
<attribute NAME="hideFolded" VALUE="false"/>
<attribute NAME="headerNumbering" VALUE="false"/>
<attribute NAME="topHeadersNumbered" VALUE="false"/>
<attribute NAME="topHeaderStartingNumber" VALUE="1" OBJECT="org.freeplane.features.format.FormattedNumber|1"/>
<attribute NAME="fileLinksRelative" VALUE="false"/>
<attribute NAME="lineOverHeader" VALUE="true"/>
<attribute NAME="ignoreHeaderDetails" VALUE="true"/>
<attribute NAME="ignoreHeaderNotes" VALUE="true"/>
<attribute NAME="ignoreLeafDetails" VALUE="false"/>
<attribute NAME="ignoreHeaderImageObjects" VALUE="false"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>= edofro.MarkDownHelper.MDH.document(node)</text>
</richcontent>
<node TEXT="next page" STYLE_REF="markdownNote" ID="ID_1862306609" CREATED="1659829036544" MODIFIED="1659829036544"><richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>After creating the new map, click the "**Next page**" button to continue with the tutorial.
</text>
</richcontent>
</node>
</node>
</node>
</node>
<node TEXT="What's different with this new map?" STYLE_REF="ToM_newPage" FOLDED="true" ID="ID_1720201285" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="show menu commands" STYLE_REF="ToM_showMenu" ID="ID_399360723" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="Edit styles" ID="ID_543660174" CREATED="1659829036544" MODIFIED="1659829036544" LINK="menuitem:_EditStylesAction">
<icon BUILTIN="emoji-1F525"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/markdown">
<text>As said before this new map has some _special styles_.

Let's take a look at the **styles manager**. There you will see the **ToM** styles in the _user defined styles_ group. 

To close the **Styles manager** just press **escape** or click "**OK**" or "**Cancel**"</text>
</richcontent>
</node>
</node>
</node>
<node TEXT="Add a new tutorial to a map" STYLE_REF="ToM_newPage" FOLDED="true" ID="ID_1782530448" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="add new node" ID="ID_1936431863" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="text" STYLE_REF="ToM_note" ID="ID_868537680" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="MDH.md" STYLE_REF="MarkdownHelperNode" ID="ID_840411831" CREATED="1659829036544" MODIFIED="1659829036544">
<attribute NAME="headersToUnderline" VALUE="0" OBJECT="org.freeplane.features.format.FormattedNumber|0"/>
<attribute NAME="hideFolded" VALUE="false"/>
<attribute NAME="headerNumbering" VALUE="false"/>
<attribute NAME="topHeadersNumbered" VALUE="false"/>
<attribute NAME="topHeaderStartingNumber" VALUE="1" OBJECT="org.freeplane.features.format.FormattedNumber|1"/>
<attribute NAME="fileLinksRelative" VALUE="false"/>
<attribute NAME="lineOverHeader" VALUE="true"/>
<attribute NAME="ignoreHeaderDetails" VALUE="true"/>
<attribute NAME="ignoreHeaderNotes" VALUE="true"/>
<attribute NAME="ignoreLeafDetails" VALUE="false"/>
<attribute NAME="ignoreHeaderImageObjects" VALUE="false"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>= edofro.MarkDownHelper.MDH.document(node)</text>
</richcontent>
<node TEXT="1.new node" STYLE_REF="markdownNote" ID="ID_354761012" CREATED="1659829036544" MODIFIED="1659829036544"><richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>Ok, now is time to create the tutorial. 

We first need a title for our tutorial.

For that we will insert a new node that will have the tutorial's title as text and will contain the whole tutorial's information as nodes in it.
</text>
</richcontent>
</node>
</node>
<node TEXT="MDH.md" STYLE_REF="MarkdownHelperNode" ID="ID_1692344443" CREATED="1659829036544" MODIFIED="1659829036544">
<attribute NAME="headersToUnderline" VALUE="0" OBJECT="org.freeplane.features.format.FormattedNumber|0"/>
<attribute NAME="hideFolded" VALUE="false"/>
<attribute NAME="headerNumbering" VALUE="true"/>
<attribute NAME="topHeadersNumbered" VALUE="true"/>
<attribute NAME="topHeaderStartingNumber" VALUE="1" OBJECT="org.freeplane.features.format.FormattedNumber|1"/>
<attribute NAME="fileLinksRelative" VALUE="false"/>
<attribute NAME="lineOverHeader" VALUE="true"/>
<attribute NAME="ignoreHeaderDetails" VALUE="true"/>
<attribute NAME="ignoreHeaderNotes" VALUE="true"/>
<attribute NAME="ignoreLeafDetails" VALUE="false"/>
<attribute NAME="ignoreHeaderImageObjects" VALUE="false"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>= edofro.MarkDownHelper.MDH.document(node)</text>
</richcontent>
<node TEXT="Insert the tutorial's title node" ID="ID_1779441653" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="1.new node" STYLE_REF="markdownNote" ID="ID_86970603" CREATED="1659829036544" MODIFIED="1659829036544"><richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>Ok. just insert a new node and write "my first tutorial" as its text.

(If you want to skip this step, just click 'insert nodes')</text>
</richcontent>
</node>
</node>
</node>
</node>
<node TEXT="nodes to copy" STYLE_REF="ToM_copy" ID="ID_975656133" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="My first tutorial" ID="ID_585077521" CREATED="1659829036544" MODIFIED="1659829036544"/>
</node>
<node TEXT="show menu commands" STYLE_REF="ToM_showMenu" ID="ID_212369580" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="Show tutorials from active map" ID="ID_128257230" CREATED="1659829036544" MODIFIED="1659829036544" LINK="menuitem:_addons.tutorialOMatic.showTutorialsFromActiveMap_on_single_node">
<icon BUILTIN="emoji-1F525"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/markdown">
<text>### Ok. Now let's test it!

Let's see our first tutorial!!
</text>
</richcontent>
</node>
</node>
</node>
<node TEXT="styling it" STYLE_REF="ToM_nextPage" ID="ID_1587239659" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="text" STYLE_REF="ToM_note" ID="ID_1141904025" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="MDH.md" STYLE_REF="MarkdownHelperNode" ID="ID_1621180862" CREATED="1659829036544" MODIFIED="1659829036544">
<attribute NAME="headersToUnderline" VALUE="0" OBJECT="org.freeplane.features.format.FormattedNumber|0"/>
<attribute NAME="hideFolded" VALUE="false"/>
<attribute NAME="headerNumbering" VALUE="false"/>
<attribute NAME="topHeadersNumbered" VALUE="false"/>
<attribute NAME="topHeaderStartingNumber" VALUE="1" OBJECT="org.freeplane.features.format.FormattedNumber|1"/>
<attribute NAME="fileLinksRelative" VALUE="false"/>
<attribute NAME="lineOverHeader" VALUE="true"/>
<attribute NAME="ignoreHeaderDetails" VALUE="true"/>
<attribute NAME="ignoreHeaderNotes" VALUE="true"/>
<attribute NAME="ignoreLeafDetails" VALUE="false"/>
<attribute NAME="ignoreHeaderImageObjects" VALUE="false"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>= edofro.MarkDownHelper.MDH.document(node)</text>
</richcontent>
<node TEXT="No tutorial in map" ID="ID_1367539307" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="frustr" STYLE_REF="markdownNote" ID="ID_1360550771" CREATED="1659829036544" MODIFIED="1659829036544"><richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>Ok. that was kind of frustrating, but as said before, nodes need special styles to be recognized as part of the tutorial.
</text>
</richcontent>
</node>
</node>
<node TEXT="to add a new tut..." ID="ID_246016876" CREATED="1659829036544" MODIFIED="1659829036544"><richcontent TYPE="NOTE" CONTENT-TYPE="xml/">
<html>
<head>
</head>
<body>
<p>
To start a tutorial you have to:
</p>
<ul>
<li>
Select the node that will be the root of the new tutorial
</li>
<li>
Its text will be used as the title of the new tutorial
</li>
<li>
Assign the style "ToM-Tutorial" to that node
</li>
</ul>
<p>
</p>
</body>
</html></richcontent>
</node>
</node>
<node TEXT="MDH.md" STYLE_REF="MarkdownHelperNode" ID="ID_1350963594" CREATED="1659829036544" MODIFIED="1659829036544">
<attribute NAME="headersToUnderline" VALUE="0" OBJECT="org.freeplane.features.format.FormattedNumber|0"/>
<attribute NAME="hideFolded" VALUE="false"/>
<attribute NAME="headerNumbering" VALUE="false"/>
<attribute NAME="topHeadersNumbered" VALUE="false"/>
<attribute NAME="topHeaderStartingNumber" VALUE="1" OBJECT="org.freeplane.features.format.FormattedNumber|1"/>
<attribute NAME="fileLinksRelative" VALUE="false"/>
<attribute NAME="lineOverHeader" VALUE="true"/>
<attribute NAME="ignoreHeaderDetails" VALUE="true"/>
<attribute NAME="ignoreHeaderNotes" VALUE="true"/>
<attribute NAME="ignoreLeafDetails" VALUE="false"/>
<attribute NAME="ignoreHeaderImageObjects" VALUE="false"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>= edofro.MarkDownHelper.MDH.document(node)</text>
</richcontent>
<node TEXT="Apply ToM_Tutorial style to your node" ID="ID_284362221" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="frustr" STYLE_REF="markdownNote" ID="ID_2279027" CREATED="1659829036544" MODIFIED="1659829036544"><richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>Select the node you want to be your tutorial's title and apply the **ToM-Tutorial** style to it.</text>
</richcontent>
</node>
</node>
</node>
</node>
<node TEXT="nodes to select" STYLE_REF="ToM_select" ID="ID_621099972" CREATED="1659829036544" MODIFIED="1659829036544">
<node ID="ID_1819440485" CONTENT_ID="ID_585077521"/>
</node>
<node TEXT="show menu commands" STYLE_REF="ToM_showMenu" ID="ID_768969485" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="ToM-Tutorial" ID="ID_1678784758" CREATED="1659829036544" MODIFIED="1659829036544" LINK="menuitem:_AssignStyleAction.ToM-Tutorial">
<icon BUILTIN="emoji-1F525"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="xml/">
<html>
<head>
</head>
<body>
<p>
Apply the style to the node:
</p>
</body>
</html></richcontent>
</node>
<node TEXT="Show tutorials from active map" ID="ID_1087925679" CREATED="1659829036544" MODIFIED="1659829036544" LINK="menuitem:_addons.tutorialOMatic.showTutorialsFromActiveMap_on_single_node">
<icon BUILTIN="emoji-1F525"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/markdown">
<text>### Ok. Now let's test it!

Let's see our first tutorial!!
</text>
</richcontent>
</node>
</node>
</node>
<node TEXT="no contetnt in tutorial" STYLE_REF="ToM_nextPage" ID="ID_1965085443" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="text" STYLE_REF="ToM_note" ID="ID_1717212341" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="MDH.md" STYLE_REF="MarkdownHelperNode" ID="ID_808014450" CREATED="1659829036544" MODIFIED="1659829036544">
<attribute NAME="headersToUnderline" VALUE="0" OBJECT="org.freeplane.features.format.FormattedNumber|0"/>
<attribute NAME="hideFolded" VALUE="false"/>
<attribute NAME="headerNumbering" VALUE="false"/>
<attribute NAME="topHeadersNumbered" VALUE="false"/>
<attribute NAME="topHeaderStartingNumber" VALUE="1" OBJECT="org.freeplane.features.format.FormattedNumber|1"/>
<attribute NAME="fileLinksRelative" VALUE="false"/>
<attribute NAME="lineOverHeader" VALUE="true"/>
<attribute NAME="ignoreHeaderDetails" VALUE="true"/>
<attribute NAME="ignoreHeaderNotes" VALUE="true"/>
<attribute NAME="ignoreLeafDetails" VALUE="false"/>
<attribute NAME="ignoreHeaderImageObjects" VALUE="false"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>= edofro.MarkDownHelper.MDH.document(node)</text>
</richcontent>
<node TEXT="No tutorial components ..." ID="ID_1225195644" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="frustr" STYLE_REF="markdownNote" ID="ID_332532671" CREATED="1659829036544" MODIFIED="1659829036544"><richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>Ok. that was kind of frustrating again.

Let's put some information in the tutorial now!!
</text>
</richcontent>
</node>
</node>
</node>
</node>
</node>
</node>
<node TEXT="Add information to a tutorial" STYLE_REF="ToM_newPage" FOLDED="true" ID="ID_870357754" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="text" STYLE_REF="ToM_note" ID="ID_803236936" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="MDH.md" STYLE_REF="MarkdownHelperNode" ID="ID_174370332" CREATED="1659829036544" MODIFIED="1659829036544">
<attribute NAME="headersToUnderline" VALUE="0" OBJECT="org.freeplane.features.format.FormattedNumber|0"/>
<attribute NAME="hideFolded" VALUE="false"/>
<attribute NAME="headerNumbering" VALUE="false"/>
<attribute NAME="topHeadersNumbered" VALUE="false"/>
<attribute NAME="topHeaderStartingNumber" VALUE="1" OBJECT="org.freeplane.features.format.FormattedNumber|1"/>
<attribute NAME="fileLinksRelative" VALUE="false"/>
<attribute NAME="lineOverHeader" VALUE="true"/>
<attribute NAME="ignoreHeaderDetails" VALUE="true"/>
<attribute NAME="ignoreHeaderNotes" VALUE="true"/>
<attribute NAME="ignoreLeafDetails" VALUE="false"/>
<attribute NAME="ignoreHeaderImageObjects" VALUE="false"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>= edofro.MarkDownHelper.MDH.document(node)</text>
</richcontent>
<node TEXT=""ToM_note" nodes" ID="ID_336141637" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="to display" STYLE_REF="markdownNote" ID="ID_543862061" CREATED="1659829036544" MODIFIED="1659829036544"><richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>To know what information from the map should be used as text in the information panels of the tutorial,
**Tutorial-o Matic** looks for nodes with the **ToM_note** style and it uses the notes form their childnodes as information.
</text>
</richcontent>
</node>
</node>
</node>
<node TEXT="to add information ..." ID="ID_546800049" CREATED="1659829036544" MODIFIED="1659829036544"><richcontent TYPE="NOTE" CONTENT-TYPE="xml/">
<html>
<head>
</head>
<body>
<p>
You should do the following steps to add the first information to our tutorial
</p>
<ol>
<li>
Insert a childnode to the Tutorial node
</li>
<li>
Its text will be "info" (has no relevance)
</li>
<li>
apply style 'ToM_note' to it
</li>
<li>
add a child node to it
</li>
<li>
It's text will be "first panel" (has no relevance)
</li>
<li>
Write some text to its note (this is the information that will be shown)
</li>
</ol>
</body>
</html></richcontent>
</node>
<node TEXT="You can do those steps by yoursel and skip to the next page or" ID="ID_506987333" CREATED="1659829036544" MODIFIED="1659829036544"><richcontent TYPE="NOTE" CONTENT-TYPE="xml/">
<html>
<head>
</head>
<body>
<p>
You can do those steps by yourself and skip to the next page or use the following buttons to let ToM do the steps for you.
</p>
</body>
</html></richcontent>
</node>
</node>
<node TEXT="x" ID="ID_1376331876" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="nodes to select" STYLE_REF="ToM_select" ID="ID_967106660" CREATED="1659829036544" MODIFIED="1659829036544">
<node ID="ID_1766466740" CONTENT_ID="ID_585077521"/>
</node>
<node TEXT="nodes to copy" STYLE_REF="ToM_copy" ID="ID_1677666482" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="info" ID="ID_121815258" CREATED="1659829036544" MODIFIED="1659829036544"/>
</node>
<node TEXT="nodes to select" STYLE_REF="ToM_select" ID="ID_1009752272" CREATED="1659829036544" MODIFIED="1659829036544">
<node ID="ID_1855675979" CONTENT_ID="ID_121815258"/>
</node>
<node TEXT="show menu commands" STYLE_REF="ToM_showMenu" ID="ID_1815978261" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="ToM_note" ID="ID_1769999276" CREATED="1659829036544" MODIFIED="1659829036544" LINK="menuitem:_AssignStyleAction.ToM_note">
<icon BUILTIN="emoji-1F525"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="xml/">
<html>
<head>
</head>
<body>
<p>
Ok. Let's apply the style to the node:
</p>
</body>
</html></richcontent>
</node>
</node>
<node TEXT="nodes to copy" STYLE_REF="ToM_copy" ID="ID_1622803215" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="first panel" ID="ID_1464168821" CREATED="1659829036544" MODIFIED="1659829036544"/>
</node>
<node TEXT="nodes to select" STYLE_REF="ToM_select" ID="ID_809375234" CREATED="1659829036544" MODIFIED="1659829036544">
<node ID="ID_1785207834" CONTENT_ID="ID_1464168821"/>
</node>
<node TEXT="show menu commands" STYLE_REF="ToM_showMenu" ID="ID_1945880682" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="Edit note in dialog" ID="ID_1683226085" CREATED="1659829036544" MODIFIED="1659829036544" LINK="menuitem:_EditNoteInDialogAction">
<icon BUILTIN="emoji-1F525"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="xml/">
<html>
<head>
</head>
<body>
<p>
<b><font size="4">Add a note</font></b><br/>Now you have to add a note to the node.
</p>
<p>
Follow the instructions to open a dialog where you can write the information.
</p>
<p>
Write something and click <b>OK</b>
</p>
</body>
</html></richcontent>
</node>
<node TEXT="Show tutorials from active map" ID="ID_1593510320" CREATED="1659829036544" MODIFIED="1659829036544" LINK="menuitem:_addons.tutorialOMatic.showTutorialsFromActiveMap_on_single_node">
<icon BUILTIN="emoji-1F525"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/markdown">
<text>### Ok. Now let's test it!

Let's see our first tutorial!!
</text>
</richcontent>
</node>
</node>
</node>
</node>
<node TEXT="Some examples" STYLE_REF="ToM_newPage" FOLDED="true" ID="ID_1365241462" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="text" STYLE_REF="ToM_note" ID="ID_1133084422" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="MDH.md" STYLE_REF="MarkdownHelperNode" ID="ID_1570132324" CREATED="1659829036544" MODIFIED="1659829036544">
<attribute NAME="headersToUnderline" VALUE="0" OBJECT="org.freeplane.features.format.FormattedNumber|0"/>
<attribute NAME="hideFolded" VALUE="false"/>
<attribute NAME="headerNumbering" VALUE="false"/>
<attribute NAME="topHeadersNumbered" VALUE="false"/>
<attribute NAME="topHeaderStartingNumber" VALUE="1" OBJECT="org.freeplane.features.format.FormattedNumber|1"/>
<attribute NAME="fileLinksRelative" VALUE="false"/>
<attribute NAME="lineOverHeader" VALUE="true"/>
<attribute NAME="ignoreHeaderDetails" VALUE="true"/>
<attribute NAME="ignoreHeaderNotes" VALUE="true"/>
<attribute NAME="ignoreLeafDetails" VALUE="false"/>
<attribute NAME="ignoreHeaderImageObjects" VALUE="false"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>= edofro.MarkDownHelper.MDH.document(node)</text>
</richcontent>
<node TEXT="to display" STYLE_REF="markdownNote" ID="ID_1962567017" CREATED="1659829036544" MODIFIED="1659829036544"><richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>Now we will copy to the tutorial some other
'ToM_note' nodes as examples so you can
see other use cases
</text>
</richcontent>
</node>
<node TEXT="text, html or MD" ID="ID_126831145" CREATED="1659829036544" MODIFIED="1659829036544"><richcontent TYPE="NOTE" CONTENT-TYPE="xml/">
<html>
<head>
</head>
<body>
<p>
The notes in the child nodes can be written using <b>plain text</b>, <b>Html</b> or <b>Markdown</b>, just as usual.
</p>
</body>
</html></richcontent>
</node>
</node>
</node>
<node TEXT="nodes to select" STYLE_REF="ToM_select" ID="ID_1878603576" CREATED="1659829036544" MODIFIED="1659829036544">
<node ID="ID_928686959" CONTENT_ID="ID_585077521"/>
</node>
<node TEXT="nodes to copy" STYLE_REF="ToM_copy" ID="ID_73409182" CREATED="1659829036544" MODIFIED="1659829036544">
<icon BUILTIN="closed"/>
<node TEXT="html notes" ID="ID_744672107" CREATED="1659829036544" MODIFIED="1659829036544"><richcontent TYPE="NOTE" CONTENT-TYPE="plain/markdown"/>
<node TEXT="text" STYLE_REF="ToM_note" ID="ID_1078938962" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="hi! this is a demo" ID="ID_1156849528" CREATED="1659829036544" MODIFIED="1659829036544"><richcontent TYPE="NOTE" CONTENT-TYPE="xml/">
<html>
<head>
</head>
<body style="font-size: 20; font-family: Calibri">
<h1>
Welcome to the <u><font color="red" face="Elephant">Tutorial-o-Matic</font></u> demo!!
</h1>
<p>
This is a <b>demo version </b>of an addon that can be used to build tutorials in <strong style="font-size: x-large; text-decoration: underline"><font size="x-large"><u>Freeplane</u></font></strong>.
</p>
</body>
</html></richcontent>
</node>
</node>
</node>
<node TEXT="Other nodes that doesn't have an 'ToM_...' style won't be considered to build the tutorial" ID="ID_57803792" CREATED="1659829036544" MODIFIED="1659829036544"/>
<node TEXT="markdown notes" ID="ID_913876742" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="text" STYLE_REF="ToM_note" ID="ID_1444151805" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="markdown lists" ID="ID_665165554" CREATED="1659829036544" MODIFIED="1659829036544"><richcontent TYPE="NOTE" CONTENT-TYPE="plain/markdown">
<text>## List examples

### Simple list

1. apples
1. bananas
1. oranges
1. lettuce
1. cucumber
1. tomatos
1. carrots

### Structured list

1. fruits
1. apples
1. bananas
1. oranges
1. tomatoes
1. salats
* lettuce
* cucumber
* tomatoes
* carrots
</text>
</richcontent>
</node>
<node TEXT="markdown table" ID="ID_838040304" CREATED="1659829036544" MODIFIED="1659829036544"><richcontent TYPE="NOTE" CONTENT-TYPE="plain/markdown">
<text>## Table example

|Name|this is the Age column|Badge|
|----|:----:|----|
|Piotr|25||
|Maria|33||
|Alex|45||
</text>
</richcontent>
<node TEXT="this node won't appear in the tutorial" ID="ID_1051545432" CREATED="1659829036544" MODIFIED="1659829036544"><richcontent CONTENT-TYPE="xml/" TYPE="DETAILS">
<html>
<head>
</head>
<body>
<p>
because it's not a direct child
</p>
</body>
</html></richcontent>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/markdown">
<text>The , the  and the  are from **[Graphic Burger](https://graphicburger.com/)** and can be found [here](https://graphicburger.com/71-free-animal-icons/).</text>
</richcontent>
</node>
</node>
<node TEXT="markdown block" ID="ID_425141027" CREATED="1659829036544" MODIFIED="1659829036544"><richcontent TYPE="NOTE" CONTENT-TYPE="plain/markdown">
<text>## Code block

Code: **'example code'**

```groovy
// example code
// the node's details must start with a dot and then the language of the code

def text = node.text

def msg = "the text of the selected node is ${text}"

ui.informationMessage(msg.toString())
```
</text>
</richcontent>
</node>
</node>
</node>
</node>
<node TEXT="show menu commands" STYLE_REF="ToM_showMenu" ID="ID_1514054663" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="Show tutorials from active map" ID="ID_911333614" CREATED="1659829036544" MODIFIED="1659829036544" LINK="menuitem:_addons.tutorialOMatic.showTutorialsFromActiveMap_on_single_node">
<icon BUILTIN="emoji-1F525"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/markdown">
<text>### Ok. Now let's test it!

Let's see our first tutorial!!
</text>
</richcontent>
</node>
</node>
</node>
<node TEXT="Reordering the panels" STYLE_REF="ToM_newPage" FOLDED="true" ID="ID_1186004780" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="text" STYLE_REF="ToM_note" ID="ID_170068006" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="MDH.md" STYLE_REF="MarkdownHelperNode" ID="ID_249291415" CREATED="1659829036544" MODIFIED="1659829036544">
<attribute NAME="headersToUnderline" VALUE="0" OBJECT="org.freeplane.features.format.FormattedNumber|0"/>
<attribute NAME="hideFolded" VALUE="false"/>
<attribute NAME="headerNumbering" VALUE="false"/>
<attribute NAME="topHeadersNumbered" VALUE="false"/>
<attribute NAME="topHeaderStartingNumber" VALUE="1" OBJECT="org.freeplane.features.format.FormattedNumber|1"/>
<attribute NAME="fileLinksRelative" VALUE="false"/>
<attribute NAME="lineOverHeader" VALUE="true"/>
<attribute NAME="ignoreHeaderDetails" VALUE="true"/>
<attribute NAME="ignoreHeaderNotes" VALUE="true"/>
<attribute NAME="ignoreLeafDetails" VALUE="false"/>
<attribute NAME="ignoreHeaderImageObjects" VALUE="false"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>= edofro.MarkDownHelper.MDH.document(node)</text>
</richcontent>
<node TEXT="It's play time!!" ID="ID_59733189" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="now" STYLE_REF="markdownNote" ID="ID_723302462" CREATED="1659829036544" MODIFIED="1659829036544"><richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>Now you can play with your map and see how the tutorial changes!
For example:
* reorder the 'ToM_note' nodes
* reorder their childnodes in them
* change the text in their notes
* duplicate some of the childnodes
* clone one of the childnodes and modify it
* etc
Test each change any times you want!
</text>
</richcontent>
</node>
</node>
</node>
<node TEXT="MDH.md" STYLE_REF="MarkdownHelperNode" ID="ID_1809112777" CREATED="1659829036544" MODIFIED="1659829036544">
<attribute NAME="headersToUnderline" VALUE="0" OBJECT="org.freeplane.features.format.FormattedNumber|0"/>
<attribute NAME="hideFolded" VALUE="false"/>
<attribute NAME="headerNumbering" VALUE="false"/>
<attribute NAME="topHeadersNumbered" VALUE="false"/>
<attribute NAME="topHeaderStartingNumber" VALUE="1" OBJECT="org.freeplane.features.format.FormattedNumber|1"/>
<attribute NAME="fileLinksRelative" VALUE="false"/>
<attribute NAME="lineOverHeader" VALUE="true"/>
<attribute NAME="ignoreHeaderDetails" VALUE="true"/>
<attribute NAME="ignoreHeaderNotes" VALUE="true"/>
<attribute NAME="ignoreLeafDetails" VALUE="false"/>
<attribute NAME="ignoreHeaderImageObjects" VALUE="false"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/">
<text>= edofro.MarkDownHelper.MDH.document(node)</text>
</richcontent>
<node TEXT="## Tip: You can use the "Execute" button to see the changes faster" ID="ID_1839328306" CREATED="1659979268473" MODIFIED="1659979383586"/>
</node>
</node>
<node TEXT="show menu commands" STYLE_REF="ToM_showMenu" ID="ID_1183677168" CREATED="1659829036544" MODIFIED="1659829036544">
<node TEXT="Show tutorials from active map" ID="ID_1634582043" CREATED="1659829036544" MODIFIED="1659829036544" LINK="menuitem:_addons.tutorialOMatic.showTutorialsFromActiveMap_on_single_node">
<icon BUILTIN="emoji-1F525"/>
<richcontent TYPE="NOTE" CONTENT-TYPE="plain/markdown">
<text>### Ok. Now let's test it!

Let's see our first tutorial!!
</text>
</richcontent>
</node>
</node>