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
Copy file name to clipboardExpand all lines: documentation/Tutorials.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@ Every tutorial has three main parts
9
9
* at least one step
10
10
Additionally, there are optional parts
11
11
* a subtitle
12
+
* tags
12
13
* a conclusion of the tutorial. This will be shown at the last page and can be used to summarize the learned, to foreshadow the next steps on the learning path or to mention useful sources.
13
14
14
15
The tutorials are written in asciidoc files.
@@ -100,6 +101,16 @@ To display images within a step, you can use either the [displayContent](https:/
100
101
```
101
102
The image must be in a folder called `images` in the folder of the playbook (see [Structure](https://github.com/devonfw-tutorials/tutorial-compiler/wiki/Structure)).
102
103
104
+
There is the option to add tags to your tutorials. To do that, you have to add the following syntax after the title or if you have specified a subtitle, after the subtitle.
105
+
106
+
````
107
+
[tags]
108
+
--
109
+
tagType=tag0;tag1
110
+
tagType=tag0;tag1;tag2
111
+
--
112
+
```
113
+
103
114
You can also add an optional conclusion text, which is shown on completion of the tutorial. Use this to summarize the important content of the tutorial, to point out what to learn next or to mention other useful informations.
104
115
105
116
To do that, you have to provide the conclusion at the end of the tutorial (after the last step) surrounded by ```====```.
@@ -116,6 +127,11 @@ These blocks are combined to a complete tutorial.
0 commit comments