Wiki source code of Help

Version 47.1 by Martina Wagner on 2026/04/19 12:50

Show last authors
1
2 == subdivision page ==
3
4 A page can be divided into sections, with sections introduced by level 2 headings.
5
6 {{info}}
7 {{{
8 == information ==
9 .....
10 == exercise ==
11 .....
12 }}}
13 {{/info}}
14
15 ==blue box==
16 {{info}}
17 {{{
18 {{info}} information {{/info}}
19 }}}
20 {{/info}}
21
22 == task ==
23
24 {{info}}
25 {{{
26 {{exercise id="name" source="AG Englisch"}}
27 task {{/exercise}}
28 }}}
29 {{/info}}
30
31
32
33 == important formatting ==
34
35 |{{{(%class="abc"%)
36 1. point one
37 1. point two
38 }}}|(((
39 (% class="abc" %)
40 1. point one
41 1. point two
42 )))
43 |italics {{{//f//}}}| //f//
44 |bold {{{**L**}}}| **L**
45
46 == include images ==
47
48 To insert an image, you must exit edit mode and upload the image as an attachment at the very bottom of the page. You can then use
49
50 {{info}}
51 {{{
52 [[image:name.png]]
53 }}}
54 {{/info}}
55
56 The recommended file formats for images are PNG, SVG, and JPG. SVG has the advantage of scaling without loss of quality and looking perfect even when printed. PNG is suitable for diagrams, and JPG for photos. For both, it is recommended to upload the image at a high resolution (e.g., HD: 1,280 x 720 pixels) and then scale it to a suitable size using ##{{{[[image:name.png||width=600]]}}}##. Thanks to the extra pixels, the image will then look good even when printed. You can center the image using ##{{{||style=“display: block; margin: auto”}}}##. Using ##{{{||style=“float: right”}}}## positions the image on the right margin, with text flowing around it on the left.
57
58 Depending on where the image comes from, a license notice must be added. The [[License Notice Generator>>https://lizenzhinweisgenerator.de]] can be helpful for this.
59
60 == table ==
61
62 {{info}}
63 {{{
64 |=Header cell|=another one
65 |Normal cell|without =
66 }}}
67 {{/info}}
68
69 |=Header cell|=another one
70 |Normal cell|without =
71
72 This is what a standard table looks like. It isn't suitable for every purpose. Sometimes you might not want borders, or you might want full borders, or you might want less space between the rows. For these cases, there are three pre-designed templates that you can apply as follows:
73
74 {{info}}
75 {{{
76 (% class="noborder" %)
77 |=Header cell|=another one
78 |Normal cell|without =
79 }}}
80 {{/info}}
81
82 (% class="noborder" %)
83 |=Header cell|=another one
84 |Normal cell|without =
85
86 {{info}}
87 {{{
88 (% class="border" %)
89 |=Header cell|=another one
90 |Normal cell|without =
91 }}}
92 {{/info}}
93
94 (% class="border" %)
95 |=Header cell|=another one
96 |Normal cell|without =
97
98 {{info}}
99 {{{
100 (% class="border slim" %)
101 |=Header cell|=another one
102 |Normal cell|without =
103 }}}
104 {{/info}}
105
106 (% class="border slim" %)
107 |=Header cell|=another one
108 |Normal cell|without =
109
110 **Note:** ##slim## can be used in combination with ##border## and ##noborder##
111
112 == lists ==
113
114 Normally, ordered lists (Markup: {{code}}1. {{/code}}) are numbered with numbers. In the exercises, use the following code to display a, b, c instead.
115
116 {{info}}
117 {{{
118 (% class="abc" %)
119 1. Subtask 1
120 1. Subtask 2
121 1. Subtask 3
122 }}}
123 {{/info}}
124
125 (% class="abc" %)
126 1. Subtask 1
127 1. Subtask 2
128 1. Subtask 3
129
130 == Clicking on a word opens a new page with information ==
131
132 {{info}}
133 {{{
134 [[word]]
135 }}}
136 {{/info}}
137
138 [[word]]
139
140 == A small pop-up appears when you press a round button ==
141
142 {{info}}
143 {{{
144 {{tooltip event="click"}}Information you want to display {{/tooltip}}
145 }}}
146 {{/info}}
147
148 {{tooltip event="click"}}Information you want to display{{/tooltip}}