(Updating to match new version of source page) |
(Importing a new version from external source) |
||
Line 177: | Line 177: | ||
text | text | ||
text | text | ||
− | <blockquote>Quote</blockquote> | + | <blockquote class="quote">Quote</blockquote> |
text | text | ||
text | text |
Latest revision as of 06:57, 3 April 2015
In TangoWiki Wiki-Code and HTML code can be used for text formatting. For the formatting special characters are available on the keyboard. Also, when in Edit mode, the Format bar can be used .
Contents
Formatting in edit mode with the formatting bar
TangoWiki offers in edit mode a new formatting bar, which makes formatting easier:
Insert signature with time stamp (only use in Discussion pages, not in articles!)
Insert internal or external links
In "Advanced" headings and lists, nowiki-code etc. can be inserted. The automatic creation of a table is particularly helpful.
Formatting with Wiki code
Formatting with HTML code
In MediaWiki some HTML tags are allowed. For example <code>
, <div>
, <span>
und <font>
.
More infos on the help pages of MediaWiki.org.
Description | Wiki code | Output | Notes |
---|---|---|---|
Quotation | text text <blockquote class="quote">Quote</blockquote> text text |
text text Quote text text |
Info: The class "quote" is a CSS class that formats the blockquote. The blockquote tags can be used without the class, but should include it to ensure desired formatting. |
Comment | <!-- This is a comment --> Comments can only be seen in editing mode (source code). |
Comments can only be seen in editing mode (source code). |
Comments can also be used to hide certain text parts, i.e. to not delete, but only not show those parts. For this, wrap the comment code around the text to be hidden. |
Pre-formatted text | <pre>The text is already '''formatted''' and ''Wiki code'' won't have any affect.</pre> |
The text is already '''formatted''' and ''Wiki code'' won't have any affect. |
Corresponds to <nowiki>...</nowiki> . Style information can be added to the code <pre> .
|