This repository has been archived on 2026-07-13. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
moreWiki/More Wiki in a jar/public/docs/wiki/Help Formatting.wiki.3
T
2012-01-08 15:18:29 +01:00

159 lines
3.9 KiB
Plaintext

You can format your text using wiki markup. This consists of normal characters like asterisks, single quotes or equation marks which have a special function in the wiki, sometimes depending on their position. For example, to format a word in ''italic'', you include it in two single quotes like <tt><nowiki>''this''</nowiki></tt>
== Text formatting markup ==
{| align="center" border="2" width="100%" cellspacing="4" cellpadding="3" rules="all" style="margin:1em 1em 1em 0; border:solid 1px #AAAAAA; border-collapse:collapse;empty-cells:show;"
|-
| bgcolor="#A7C1F2" |'''Description'''
| bgcolor="#A7C1F2" |'''You type'''
| bgcolor="#A7C1F2" |'''You get'''
|-
| colspan="3" align="center" | ''applies anywhere''
|-
|Italic text
|<tt><nowiki>''italic''</nowiki></tt>
|''italic''
|-
| Bold text
|<tt><nowiki>'''bold'''</nowiki></tt>
|'''bold'''
|-
| Bold and italic
|<tt><nowiki>'''''bold & italic'''''</nowiki></tt>
|'''''bold & italic'''''
|-
|Escape wiki markup
|<tt><nowiki><nowiki>no "markup"</nowiki></nowiki></tt>
|<nowiki>no ''markup''</nowiki>
|-
|Fixed width text
|
<nowiki><tt>Fixed width text</tt></nowiki>
|
<tt>Fixed width text</tt>
|-
| colspan="3" align="center" | ''only at the beginning of the line''
|-
| Indent text
|
<tt><nowiki>:Single indent</nowiki></tt><br>
<tt><nowiki>::Double indent</nowiki></tt><br>
<tt><nowiki>:::::Multiple indent</nowiki></tt>
|
:Single indent
::Double indent
:::::Multiple indent
|-
|Headings of<br>different levels
|
<tt><nowiki>=level 1=</nowiki></tt><br>
<tt><nowiki>==level 2==</nowiki></tt><br>
<tt><nowiki>===level 3===</nowiki></tt><br>
<tt><nowiki>====level 4====</nowiki></tt><br>
<tt><nowiki>=====level 5=====</nowiki></tt><br>
<tt><nowiki>======level 6======</nowiki></tt>
|
<!-- this is fake
=level 1=
==level 2==
===level 3===
====level 4====
=====level 5=====
======level 6======
-->
<span style='font-size: 18pt; font-weight: bold; margin: 0 0 10px 0; padding: 0; color: #2D4386'>level 1</span>
<!--
margin: 0 0 10px 0; padding: 0; color: #2D4386
-->
|-
|Horizontal rule
|
<tt><nowiki>----</nowiki></tt>
|
----
|-
|Bullet list
|
<tt><nowiki>* one</nowiki></tt><br>
<tt><nowiki>* two</nowiki></tt><br>
<tt><nowiki>* three</nowiki></tt><br>
<tt><nowiki>** three and one-third</nowiki></tt><br>
<tt><nowiki>** three and two-thirds</nowiki></tt>
|
* one
* two
* three
** three and one-third
** three and two-thirds
|-
|Numbered list
|
<tt><nowiki># one</nowiki></tt><br>
<tt><nowiki># two<br>spanning several lines<br>without breaking the numbering</nowiki></tt><br>
<tt><nowiki># three</nowiki></tt><br>
<tt><nowiki>## three point one</nowiki></tt><br>
<tt><nowiki>## three point two</nowiki></tt>
|
# one
# two<br>spanning several lines<br>without breaking the numbering
# three
## three point one
## three point two
|-
| Mixture of bulleted<br> and numbered lists
|
<tt><nowiki># one</nowiki></tt><br>
<tt><nowiki># two</nowiki></tt><br>
<tt><nowiki>#* two point one</nowiki></tt><br>
<tt><nowiki>#* two point two</nowiki></tt><br>
|
# one
# two
#* two point one
#* two point two
|-
|Definition list
|
<tt><nowiki>;Definition</nowiki></tt><br>
<tt><nowiki>:item 1</nowiki></tt><br>
<tt><nowiki>:item 2</nowiki></tt>
|
;Definition
:item 1
:item 2
|-
|Preformatted text
|
<tt><nowiki> preformatted text is done with</nowiki></tt><br>
<tt><nowiki> a space at the </nowiki></tt><br>
<tt><nowiki> beginning of the line</nowiki></tt>
|
<pre>
preformatted text is done with
a space at the
beginning of the line
</pre>
|-
|Preformatted text with no indentation
|
<nowiki><pre> some preformatted text with no indentation </pre></nowiki>
|
<pre>
some preformatted
text with no indentation
</pre>
|}
== Paragraphs ==
More Wiki in a jar ignores normal line breaks. To start a new paragraph, leave an empty line.
== See Also ==
* [[Help Links]]
* [[Help Tables]]
* [[Help Span and Div]]
[[tags: help]]