Wiki source code of Help

Version 46.1 by Martina Wagner on 2026/04/19 12:41

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
73 So sieht eine Standard Tabelle aus. Die ist nicht für jeden Zweck geeignet. Manchmal möchte man keine Rahmen oder vollständige Rahmen oder weniger Innenabstand. Dafür gibt es drei fertige Designs, die man folgendermaßen applizieren kann:
74
75 {{info}}
76 {{{
77 (% class="noborder" %)
78 |=Überschriftenzelle|=noch eine
79 |Normale Zelle|ohne =
80 }}}
81 {{/info}}
82
83 (% class="noborder" %)
84 |=Überschriftenzelle|=noch eine
85 |Normale Zelle|ohne =
86
87 {{info}}
88 {{{
89 (% class="border" %)
90 |=Überschriftenzelle|=noch eine
91 |Normale Zelle|ohne =
92 }}}
93 {{/info}}
94
95 (% class="border" %)
96 |=Überschriftenzelle|=noch eine
97 |Normale Zelle|ohne =
98
99 {{info}}
100 {{{
101 (% class="border slim" %)
102 |=Überschriftenzelle|=noch eine
103 |Normale Zelle|ohne =
104 }}}
105 {{/info}}
106
107 (% class="border slim" %)
108 |=Überschriftenzelle|=noch eine
109 |Normale Zelle|ohne =
110
111 **Beachte:** ##slim## ist kombinierbar mit ##border## und ##noborder##
112
113 == Listen ==
114
115 Normalerweise werden geordnete Listen (Markup: {{code}}1. {{/code}}) mit Zahlen nummeriert. In den Aufgaben verwendet man folgenden Code, um stattdessen a, b, c zu bekommen.
116
117 {{info}}
118 {{{
119 (% class="abc" %)
120 1. Unteraufgabe eins
121 1. Unteraufgabe zwei
122 1. Unteraufgabe drei
123 }}}
124 {{/info}}
125
126 (% class="abc" %)
127 1. Unteraufgabe eins
128 1. Unteraufgabe zwei
129 1. Unteraufgabe drei
130
131 == Eine neue Seite mit Information öffnet sich, wenn man auf ein Wort klickt ==
132
133 {{info}}
134 {{{
135 [[Wort]]
136 }}}
137 {{/info}}
138
139 [[Wort]]
140
141 == Eine kleine Information öffnet sich, wenn man auf einen runden Knopf drückt ==
142
143 {{info}}
144 {{{
145 {{tooltip event="click"}}Information, die man zeigen möchte {{/tooltip}}
146 }}}
147 {{/info}}
148
149 {{tooltip event="click"}}Information, die man zeigen möchte {{/tooltip}}