Formatting
MWML [UL]-Tag
Creates an unordered list. Syntax [UL]...[/UL] Example MWML-Input HTML-Output Preview MWML-Input [UL] [LI]List item 1[/LI] [LI]List item 2[/LI] [/UL] HTML-Output <ul> <li>List item 1</li> <li>List item 2</li> </ul> Preview List item 1 List item 2
MWML [U]-Tag
Formats a text underlined. Syntax [U]...[/U] Beispiel MWML-Input HTML-Output Preview MWML-Input [U]This is an underlined text[/U] HTML-Output <u>This is an underlined text</u> Preview This is an underlined text
MWML [SPAN]-Tag
Creates an inline container Syntax [SPAN]...[/SPAN] Attributes Attribute Value Description id Integer Unique ID of the element class Class name(s) CSS classes Example: class='hint' style CSS CSS instructions Example: style='color: #446633; ...
MWML [OL]-Tag
Creates an ordered list. Syntax [UL]...[/UL] Example MWML-Input HTML-Output Preview MWML-Input [OL] [LI]List item 1[/LI] [LI]List item 2[/LI] [/OL] HTML-Output <ol> <li>List item 1</li> <li>List item 2</li> </ol> Preview List item 1 List item 2
MWML [LI]-Tag
Creates a list element. Syntax [LI]...[/LI] Example MWML-Input HTML-Output Preview MWML-Input [UL] [LI]List item 1[/LI] [LI]List item 2[/LI] [/UL] HTML-Output <ul> <li>List item 1</li> <li>List item 2</li> </ul> Preview List item 1 List item 2
MWML [ENCODING]-Tag
Encodes a text with the specified method. Syntax [ENCODING method='...']<TEXT>[/ENCODING] Attributes Attribute Value Description method1 html base64 base64urlsafe url cdata md5 Encoding method Example MWML-Input Preview MWML-Input [ENCODING ...
MWML [B]-Tag
Formats text in bold. Syntax [B]...[/B] Example MWML-Input Generated HTML Output MWML-Input [B]This is a bold Text[/B] Generated HTML <b>This is a bold Text</b> Output This is a bold Text