Differences between revisions 3 and 4
Revision 3 as of 2014-05-31 13:23:39
Size: 1644
Editor: KaiJaeger
Comment:
Revision 4 as of 2014-05-31 13:45:11
Size: 3250
Editor: KaiJaeger
Comment:
Deletions are marked like this. Additions are marked like this.
Line 12: Line 12:
<<SeeSaw(section="whitespace", toshow="<<Show>> the details", tohide="<<Hide>> the details", bg="#FEE1A5", speed="Slow")>>
{{{{#!wiki seesaw/whitespace/whitespace-bg/hide
Line 16: Line 19:
This is not another line.
Line 21: Line 25:
This is not another line.
Line 22: Line 28:

}}}}
Line 25: Line 33:
<<SeeSaw(section="linebreaks", toshow="<<Show>> the details", tohide="<<Hide>> the details", bg="#FEE1A5", speed="Slow")>>
{{{{#!wiki seesaw/linebreaks/linebreaks-bg/hide
Line 35: Line 45:
}}}}
Line 37: Line 49:
<<SeeSaw(section="indent", toshow="<<Show>> the details", tohide="<<Hide>> the details", bg="#FEE1A5", speed="Slow")>>
{{{{#!wiki seesaw/indent/lindentbg/hide
Line 38: Line 52:
This:

{{{
no space
 Line 1
 Line 2
   Line 3
 Line 4
}}}

leads to this:

no space
 Line 1
 Line 2
   Line 3
 Line 4

}}}}
Line 40: Line 73:

<<SeeSaw(section="titles", toshow="<<Show>> the details", tohide="<<Hide>> the details", bg="#FEE1A5", speed="Slow")>>
{{{{#!wiki seesaw/titles/titles/hide

The different levels depend on the number of "=" signs:

{{{
= level 1 =
== level 2 ==
=== level 3 ===
==== level 4 ====
}}}

Notes:
 * The first "=" char must be the first character on a line.
 * To the right of the very last "=" char their must not be any other white space.

A word of advice: try to avoid using level 4 headers, and '''never''' use headers of level 5 and 6!

}}}}
Line 45: Line 98:
<<SeeSaw(section="nos", toshow="<<Show>> the details", tohide="<<Hide>> the details", bg="#FEE1A5", speed="Slow")>>
{{{{#!wiki seesaw/nos/nos/hide
Line 60: Line 115:
}}}}
Line 63: Line 118:

<<SeeSaw(section="bullets", toshow="<<Show>> the details", tohide="<<Hide>> the details", bg="#FEE1A5", speed="Slow")>>
{{{{#!wiki seesaw/bullets/bullets/hide
Line 80: Line 138:
}}}}

HelpOnBasicFormatting

This page contains basic information about MoinMin's formatting capabilities. It covers only a small amount of the formatting features but these are possibly covering about 99% of every-day problems. If you need more detailed information start with HelpOnEditing or HelpOnMoinWikiSyntax.

Basics

White space

Show the details

Note that white space most of the time is ignored. This:

The   only       exception is white space at the beginning of a line.
This is not another line.

leads to this:

The only exception is white space at the beginning of a line. This is not another line.

For details how white space at the beginning of a line is processed see HelpOnBasicFormatting#Indentation

Line breaks

Show the details

Insert a line break with the <<BR>>. This:

This goes onto the first line<<BR>>This goes onto the second line.

leads to this:

This goes onto the first line
This goes onto the second line

Indentation

Show the details

This:

no space
 Line 1
 Line 2
   Line 3
 Line 4

leads to this:

no space

  • Line 1 Line 2
    • Line 3
    Line 4

Titles

Show the details

The different levels depend on the number of "=" signs:

= level 1 =
== level 2 ==
=== level 3 ===
==== level 4 ====

Notes:

  • The first "=" char must be the first character on a line.
  • To the right of the very last "=" char their must not be any other white space.

A word of advice: try to avoid using level 4 headers, and never use headers of level 5 and 6!

Lists

Numbered Lists

Show the details

 1. level1-1
 1. level1-2
   1. level2-1
   1. level2-2
 1.#6 level1-3

leads to this:

  1. level1-1
  2. level1-2
    1. level2-1
    2. level2-1
  3. level1-3

Bulleted Lists

Show the details

 * level1-1
 * level1-2
   * level2-1
   * level2-2
 * level1-3

leads to this:

  • level1-1
  • level1-2
    • level2-1
    • level2-1
  • level1-3

Tables

APL Code

Images

Attachments

Table of contents

Insert this right after the = title = part of your page:

    <<TableOfContents>>

HelpOnBasicFormatting (last edited 2014-10-22 20:00:16 by KaiJaeger)