]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - pgsrc/OldTextFormattingRules
fix for latest cygwin php
[SourceForge/phpwiki.git] / pgsrc / OldTextFormattingRules
1 Date: Mon, 28 Jun 2004 14:28:30 +0200
2 Mime-Version: 1.0 (Produced by PhpWiki 1.3.11pre)
3 X-Rcs-Id: $Id: OldTextFormattingRules,v 1.5 2004-06-28 12:38:10 rurban Exp $
4 Content-Type: application/x-phpwiki;
5   pagename=OldTextFormattingRules;
6   pgsrc_version="2 $Revision: 1.5 $";
7   flags=PAGE_LOCKED;
8   charset=iso-8859-1
9 Content-Transfer-Encoding: binary
10
11 ! Synopsis
12 OldTextFormattingRules%%%
13 __Emphasis:__ '____' for ''italics'', _''''_ for __bold__, '____'_''''_ for ''__both__''.%%%
14 __Lists:__ * for bullet lists, # for numbered lists, ''__;__ term __:__ definition'' for definition lists.%%%
15 __References:__ !JoinCapitalizedWords or use square brackets for a [[page link] or URL [[!http://cool.wiki.int/].%%%
16 __Footnotes:__ Use [[1],[[2],[[3],...%%%
17 __Preventing linking:__ Prefix with "!": !!DoNotHyperlink, name links like [[[[text | URL] (double up on the "[").%%%
18 __Misc:__ "!", "!!", "!!!" make headings, "%%''''%" makes a linebreak, "-''''-''''-''''-" makes a horizontal rule.
19 __Tables:__ »|« as first char, »|« for more columns, »|>« align right, »|<« align left, »|^« centered (default), »||« span columns, »|v« span rows
20
21 ----
22 ! Paragraphs
23
24 * Don't indent paragraphs
25 * Words wrap and fill as needed
26 * Use blank lines as separators
27 * Four or more minus signs make a horizontal rule
28 * %%''''% makes a linebreak (in headings and lists too)
29
30
31 ! Lists
32
33 * asterisk for first level
34 ** asterisk-asterisk for second level, etc.
35 * Use * for bullet lists, # for numbered lists (mix at will)
36 * semicolon-term-colon-definition for definition lists:
37 ;term here:definition here, as in the <DL><DT><DD> list
38 * One line for each item
39 * Other leading whitespace signals preformatted text, changes font.
40
41 ! Headings
42
43 * '!' at the start of a line makes a small heading
44 * '!!' at the start of a line makes a medium heading
45 * '!!!' at the start of a line makes a large heading
46
47 ! Fonts
48
49 * Indent with one or more spaces to use a monospace font:
50
51  This is in monospace
52 This is not
53
54 !Indented Paragraphs
55
56 * semicolon-colon -- works like <BLOCKQUOTE>
57
58 ;: this is an indented block of text
59
60 ! Emphasis
61
62 * Use doubled single-quotes ('____') for emphasis (usually ''italics'')
63 * Use doubled underscores (_''''_) for strong emphasis (usually __bold__)
64 * Mix them at will: __''bold italics''__
65 * ''Emphasis'' can be used ''multiple'' times within a line, but ''cannot'' cross line boundaries:
66
67 ''this
68 will not work''
69
70 ! References
71 * Hyperlinks to other pages within the Wiki are made by placing the page name in square brackets: [this is a page link] or UsingWikiWords (preferred)
72 * Hyperlinks to external pages are done like this: [http://www.wcsb.org/]
73 * You can name the links by providing a name, a bar (|) and then the hyperlink or pagename: [PhpWiki home page | http://phpwiki.sourceforge.net/]  - [the front page | HomePage]
74 * You can suppress linking to old-style references and URIs by preceding the word with a '!', e.g. !NotLinkedAsWikiName, !http://not.linked.to/
75 * You can create footnotes by using [[1], [[2], [[3], ... like this here [1]. See footnote for counterpart.  (If the [[ is in the first column, it is a footnote ''definition'' rather than a footnote ''reference'' [1].)
76 * Also, the old way of linking URL's is still supported: precede URLs with "http:", "ftp:" or "mailto:" to create links automatically as in: http://c2.com/
77 * URLs ending with .png, .gif, or .jpg are inlined if in square brackets, by themselves: [http://phpwiki.sourceforge.net/demo/themes/default/images/png.png]
78
79 ! Tables
80
81 * Simple tables are available.  A table row is introduced by a __|__ in the first column.  It is best described by example:
82       ||  _''''_Name_''''_               |v _''''_Cost_''''_   |v _''''_Notes_''''_
83       | _''''_First_''''_   | _''''_Last_''''_
84       |> Jeff       |< Dairiki   |^  Cheap     |< Not worth it
85       |> Marco      |< Polo      | Cheaper     |< Not available
86 ;: will generate
87 ||  __Name__               |v __Cost__   |v __Notes__
88 | __First__   | __Last__
89 |> Jeff       |< Dairiki   |^  Cheap     |< Not worth it
90 |> Marco      |< Polo      | Cheaper     |< Not available
91
92 ;: Note that multiple __|__'s lead to spanned columns, and __v__'s can be used to span rows.  A __>__ generates a right justified column, __<__ a left justified column and __^__ a centered column (which is the default.)
93 ;: With the new TextFormatingsRules tables are only supported with the OldStyleTablePlugin.
94
95
96 ! HTML Mark-Up Language
97
98 * Don't bother
99 * < and > are themselves
100 * The & characters will not work
101 * If you really must use HTML, your system administrator can enable this feature. Start each line with a bar (|). Note that this feature is disabled by default.
102
103 ! More detail than you want to know
104
105 See [MagicPhpWikiURLs] for gory details on how to write various kind of wiki maintainance links. (''deprecated'')
106
107 -----
108
109 ! Footnotes:
110
111 [1] By using [[1] a second time (in the first column) the footnote itself is ''defined''.  You may refer to a footnote as many times as you want, but you may only define it once on the page.  Note the the [[1] in the footnote links back to the first reference, if there are multiple references there will be +'s after the [[1] which will link to the other references.  (References which come ''after'' the footnote ''definition'' will not be linked to.)
112 ----
113 PhpWikiDocumentation