Changes between Version 1 and Version 2 of WikiFormatting
- Timestamp:
- Mar 20, 2012, 4:04:32 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiFormatting
v1 v2 19 19 * '''''bold italic''''' 20 20 * __underline__ 21 * {{{monospace}}} or `monospace` 21 * {{{ 22 monospace 23 }}} or `monospace` 22 24 * ~~strike-through~~ 23 25 * ^superscript^ … … 30 32 * '''''bold italic''''' 31 33 * __underline__ 32 * {{{monospace}}} or `monospace` 34 * {{{ 35 monospace 36 }}} or `monospace` 33 37 * ~~strike-through~~ 34 38 * ^superscript^ … … 36 40 37 41 Notes: 38 * `{{{...}}}` and {{{`...`}}} commands not only select a monospace font, but also treat their content as verbatim text, meaning that no further wiki processing is done on this text. 39 * {{{ ! }}} tells wiki parser to not take the following characters as wiki format, so pay attention to put a space after !, e.g. when ending bold. 42 * `{{{ 43 ... 44 }}}` and {{{ 45 `...` 46 }}} commands not only select a monospace font, but also treat their content as verbatim text, meaning that no further wiki processing is done on this text. 47 * {{{ 48 ! 49 }}} tells wiki parser to not take the following characters as wiki format, so pay attention to put a space after !, e.g. when ending bold. 40 50 41 51 == Headings == … … 151 161 def HelloWorld(): 152 162 print "Hello World" 153 }}} 163 164 }}} 154 165 }}} 155 166 … … 209 220 == Links == 210 221 211 Hyperlinks are automatically created for WikiPageNames and URLs. !WikiPageLinks can be disabled by prepending an exclamation mark "!" character, such as {{{!WikiPageLink}}}. 222 Hyperlinks are automatically created for WikiPageNames and URLs. !WikiPageLinks can be disabled by prepending an exclamation mark "!" character, such as {{{ 223 !WikiPageLink 224 }}}. 212 225 213 226 Example: