Wiki source code of Help

Version 50.1 by Christina Chatwell on 2026/04/27 17:34

Show last authors
1 == subdivision page ==
2
3 A page can be divided into sections, with sections introduced by level 2 headings.
4
5 {{info}}
6 {{{
7 == information ==
8 .....
9 == exercise ==
10 .....
11 }}}
12 {{/info}}
13
14 == blue box ==
15
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 {{info}}
47 lines: ~_~_~_~_~_~_~_~_~_~_~_~_
48 {{/info}}
49
50 == include images ==
51
52 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
53
54 {{info}}
55 {{{
56 [[image:name.png]]
57 }}}
58 {{/info}}
59
60 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.
61
62 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.
63
64 == table ==
65
66 {{info}}
67 {{{
68 |=Header cell|=another one
69 |Normal cell|without =
70 }}}
71 {{/info}}
72
73 |=Header cell|=another one
74 |Normal cell|without =
75
76 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:
77
78 {{info}}
79 {{{
80 (% class="noborder" %)
81 |=Header cell|=another one
82 |Normal cell|without =
83 }}}
84 {{/info}}
85
86 (% class="noborder" %)
87 |=Header cell|=another one
88 |Normal cell|without =
89
90 {{info}}
91 {{{
92 (% class="border" %)
93 |=Header cell|=another one
94 |Normal cell|without =
95 }}}
96 {{/info}}
97
98 (% class="border" %)
99 |=Header cell|=another one
100 |Normal cell|without =
101
102 {{info}}
103 {{{
104 (% class="border slim" %)
105 |=Header cell|=another one
106 |Normal cell|without =
107 }}}
108 {{/info}}
109
110 (% class="border slim" %)
111 |=Header cell|=another one
112 |Normal cell|without =
113
114 **Note:** ##slim## can be used in combination with ##border## and ##noborder##
115
116 == lists ==
117
118 Normally, ordered lists (Markup: {{code}}1. {{/code}}) are numbered with numbers. In the exercises, use the following code to display a, b, c instead.
119
120 {{info}}
121 {{{
122 (% class="abc" %)
123 1. Subtask 1
124 1. Subtask 2
125 1. Subtask 3
126 }}}
127 {{/info}}
128
129 (% class="abc" %)
130 1. Subtask 1
131 1. Subtask 2
132 1. Subtask 3
133
134 == Clicking on a word opens a new page with information ==
135
136 {{info}}
137 {{{
138 [[word]]
139 }}}
140 {{/info}}
141
142 [[word]]
143
144 == A small pop-up appears when you press a round button ==
145
146 {{info}}
147 {{{
148 {{tooltip event="click"}}Information you want to display {{/tooltip}}
149 }}}
150 {{/info}}
151
152 {{tooltip event="click"}}
153 Information you want to display
154 {{/tooltip}}