From: <var...@us...> - 2009-01-06 17:29:11
|
Revision: 6370 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6370&view=rev Author: vargenau Date: 2009-01-06 17:29:08 +0000 (Tue, 06 Jan 2009) Log Message: ----------- Wikicreole implemented syntax description Added Paths: ----------- trunk/pgsrc/Help%2FWikicreole Added: trunk/pgsrc/Help%FWikicreole =================================================================== --- trunk/pgsrc/Help%2FWikicreole (rev 0) +++ trunk/pgsrc/Help%2FWikicreole 2009-01-06 17:29:08 UTC (rev 6370) @@ -0,0 +1,262 @@ +Date: Tue, 6 Jan 2009 18:18:24 +0100 +Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) +X-Rcs-Id: $Id$ +Content-Type: application/x-phpwiki; + pagename=Help%2FWikicreole; + flags=PAGE_LOCKED; + markup=2; + charset=iso-8859-1 +Content-Transfer-Encoding: binary + +<?plugin CreateToc jshide||=0 with_toclink||=1 position=right with_counter=1 ?> + +Phpwiki allows you to use the Wikicreole syntax to edit your wiki pages. + +We have implemented most of Wikicreole 1.0 and Wikicreole 1.0 additions. What is implemented is described below. + +Complete information about Wikicreole can be found at: http://www.wikicreole.org/ + +== Cheat Sheet from Wikicreole web site == + +[[http://www.wikicreole.org/attach/CheatSheet/creole_cheat_sheet.png]] + +== Text formatting == + +=== Bold === + +Bold text is made using two stars: + +<verbatim> +This sentence contains **words in bold**. +</verbatim> + +This sentence contains **words in bold**. + +=== Italics === + +Italics text is made using two slashes: + +<verbatim> +This sentence contains //words in italics//. +</verbatim> + +This sentence contains //words in italics//. + +=== Underline === + +Underline text is made using two hashes: + +<verbatim> +This sentence contains __underlined text__. +</verbatim> + +This sentence contains __underlined text__. + +=== Monospace === + +Monospace text is made using two hashes: + +<verbatim> +This sentence contains ##monospace text##. +</verbatim> + +This sentence contains ##monospace text##. + +=== Superscript === + +Superscript text is made using two carets: + +<verbatim> +The XX^^th^^ century. +</verbatim> + +The XX^^th^^ century. + +=== Subscript === + +Subscript text is made using two commas: + +<verbatim> +Water is H,,2,,O. +</verbatim> + +Water is H,,2,,O. + +== Headers == + +Headers start on a new line with two or more equal signs (up to six) followed the header text. + +Optional equal signs can be put at the end of the line (to be compatible with Mediawiki syntax). They are ignored. + +The content of the headers is parsed, allowing for instance to use subscript and superscript text. (The header content parsing is optional in Wikicreole.) + +<pre> +=~= First level of header (h2 in HTML) == +=~== Second level of header (h3 in HTML) === +=~=== The XX^^th^^ century. +</pre> + +== Links == + +=== Simple link === + +<verbatim> +This is a [[link]]. +</verbatim> + +This is a [[link]]. + +=== Link with alternate text === + +<verbatim> +This is a [[link|link with alternate text]]. +</verbatim> + +This is a [[link|link with alternate text]]. + +=== External link (URL) === + +<verbatim> +[[http:www.wikicreole.org]] +</verbatim> + +[[http:www.wikicreole.org]] + +=== Raw external link (URL) === + +<verbatim> +http:www.wikicreole.org +</verbatim> + +http:www.wikicreole.org + +=== External link with alternate text === + +<verbatim> +[[http:www.wikicreole.org|Visit the Wikicreole website]] +</verbatim> + +[[http:www.wikicreole.org|Visit the Wikicreole website]] + +== Paragraphs == + +Paragraphs are made of text separated by a blank line. + +== Line breaks == + +A line break is made with two backslashes. + +<verbatim> +This is the first line,\\and this is the second. +</verbatim> + +This is the first line,\\and this is the second. + +== Lists == + +=== Unordered lists === + +<verbatim> +* Item 1 +* Item 2 +** Item 2.1 +** Item 2.2 +* Item 3 +</verbatim> + +* Item 1 +* Item 2 +** Item 2.1 +** Item 2.2 +* Item 3 + +=== Ordered lists === + +<verbatim> +# Item 1 +# Item 2 +## Item 2.1 +## Item 2.2 +# Item 3 +</verbatim> + +# Item 1 +# Item 2 +## Item 2.1 +## Item 2.2 +# Item 3 + +== Horizontal rule == + +A horizontal rule is made with four hyphens (or more) + +<verbatim> +---- +</verbatim> + +---- + +== Tables == + +All cells are separated by single pipes. Leading spaces are permitted before the first cell of a row and trailing spaces are permitted at the end of a line. The ending pipe is optional. You can embed links, bold, italics, line breaks, and nowiki in table cells. Equal sign directly following pipe defines a header. Headers can be arranged horizontally or vertically. + +<verbatim> +|=Heading Col 1 |=Heading Col 2 | +|Cell 1.1 |Two lines\\in Cell 1.2 | +|Cell 2.1 |Cell 2.2 | +</verbatim> + +<?plugin WikicreoleTable +|=Heading Col 1 |=Heading Col 2 | +|Cell 1.1 |Two lines\\in Cell 1.2 | +|Cell 2.1 |Cell 2.2 | +?> + +== Nowiki == + +Between three opening curly brackets and three closing curly brackets, no wiki markup is interpreted. + +<verbatim> +{{{ +//This// does **not** get [[formatted]] +}}} +</verbatim> + +{{{ +//This// does **not** get [[formatted]] +}}} + +== Escape character == + +The escape character is the tilde. + +It escapes the character immediately following it. + +It disables the automatic conversion of the URL immediately following it. + +It disables camel case in the word following it. + +<verbatim> +~http://www.foo.com/ +</verbatim> + +~http://www.foo.com/ + +<verbatim> +~CamelCaseLink +</verbatim> + +~CamelCaseLink + +== Plugins == + +Plugins use double angle brackets. + +<verbatim> +<<CurrentTime format="date">> +</verbatim> + +<<CurrentTime format="date">> + +---- +[[PhpWikiDocumentation]] Property changes on: trunk/pgsrc/Help%2FWikicreole ___________________________________________________________________ Added: svn:keywords + Id This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2009-01-07 09:48:05
|
Revision: 6375 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6375&view=rev Author: vargenau Date: 2009-01-07 09:48:02 +0000 (Wed, 07 Jan 2009) Log Message: ----------- Better put tilde at beginning of line Modified Paths: -------------- trunk/pgsrc/Help%2FWikicreole Modified: trunk/pgsrc/Help%FWikicreole =================================================================== --- trunk/pgsrc/Help%2FWikicreole 2009-01-07 08:58:06 UTC (rev 6374) +++ trunk/pgsrc/Help%2FWikicreole 2009-01-07 09:48:02 UTC (rev 6375) @@ -91,9 +91,9 @@ The content of the headers is parsed, allowing for instance to use subscript and superscript text. (The header content parsing is optional in Wikicreole.) <pre> -=~= First level of header (h2 in HTML) == -=~== Second level of header (h3 in HTML) === -=~=== The XX^^th^^ century. +~== First level of header (h2 in HTML) == +~=== Second level of header (h3 in HTML) === +~==== Third level of header (h4 in HTML) </pre> == Links == This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2009-01-08 11:03:07
|
Revision: 6383 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6383&view=rev Author: vargenau Date: 2009-01-08 11:03:03 +0000 (Thu, 08 Jan 2009) Log Message: ----------- Add paragraph about images Modified Paths: -------------- trunk/pgsrc/Help%2FWikicreole Modified: trunk/pgsrc/Help%FWikicreole =================================================================== --- trunk/pgsrc/Help%2FWikicreole 2009-01-08 10:26:40 UTC (rev 6382) +++ trunk/pgsrc/Help%2FWikicreole 2009-01-08 11:03:03 UTC (rev 6383) @@ -1,4 +1,4 @@ -Date: Tue, 6 Jan 2009 18:18:24 +0100 +Date: Tue, 8 Jan 2009 8:18:24 +0100 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -196,6 +196,19 @@ ---- +== Images == + +A inline image is created with curly brackets. +An alternate text can be put after a pipe. If there is none, an empty alternate text will be created. + +<verbatim> +{{myimage.png}} +</verbatim> + +<verbatim> +{{myimage.png|this is my image}} +</verbatim> + == Tables == All cells are separated by single pipes. Leading spaces are permitted before the first cell of a row and trailing spaces are permitted at the end of a line. The ending pipe is optional. You can embed links, bold, italics, line breaks, and nowiki in table cells. Equal sign directly following pipe defines a header. Headers can be arranged horizontally or vertically. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2009-01-24 11:06:27
|
Revision: 6437 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6437&view=rev Author: vargenau Date: 2009-01-24 11:06:22 +0000 (Sat, 24 Jan 2009) Log Message: ----------- Add inline nowiki Modified Paths: -------------- trunk/pgsrc/Help%2FWikicreole Modified: trunk/pgsrc/Help%FWikicreole =================================================================== --- trunk/pgsrc/Help%2FWikicreole 2009-01-24 10:59:01 UTC (rev 6436) +++ trunk/pgsrc/Help%2FWikicreole 2009-01-24 11:06:22 UTC (rev 6437) @@ -1,4 +1,4 @@ -Date: Tue, 8 Jan 2009 8:18:24 +0100 +Date: Sat, 24 Jan 2009 11:18:24 +0100 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -8,7 +8,7 @@ charset=iso-8859-1 Content-Transfer-Encoding: binary -<?plugin CreateToc jshide||=0 with_toclink||=1 position=right with_counter=1 ?> +<<CreateToc jshide||=0 with_toclink||=1 position=right with_counter=1 >> Phpwiki allows you to use the Wikicreole syntax to edit your wiki pages. @@ -117,26 +117,26 @@ === External link (URL) === <verbatim> -[[http:www.wikicreole.org]] +[[http://www.wikicreole.org]] </verbatim> -[[http:www.wikicreole.org]] +[[http://www.wikicreole.org]] === Raw external link (URL) === <verbatim> -http:www.wikicreole.org +http://www.wikicreole.org </verbatim> -http:www.wikicreole.org +http://www.wikicreole.org === External link with alternate text === <verbatim> -[[http:www.wikicreole.org|Visit the Wikicreole website]] +[[http://www.wikicreole.org|Visit the Wikicreole website]] </verbatim> -[[http:www.wikicreole.org|Visit the Wikicreole website]] +[[http://www.wikicreole.org|Visit the Wikicreole website]] == Paragraphs == @@ -219,11 +219,9 @@ |Cell 2.1 |Cell 2.2 | </verbatim> -<?plugin WikicreoleTable |=Heading Col 1 |=Heading Col 2 | |Cell 1.1 |Two lines\\in Cell 1.2 | |Cell 2.1 |Cell 2.2 | -?> == Nowiki == @@ -239,6 +237,12 @@ //This// does **not** get [[formatted]] }}} +<verbatim> +Some examples of markup are: {{{** <i>this</i> ** }}} +</verbatim> + +Some examples of markup are: {{{** <i>this</i> ** }}} + == Escape character == The escape character is the tilde. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2009-03-06 10:44:15
|
Revision: 6648 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6648&view=rev Author: vargenau Date: 2009-03-06 10:44:13 +0000 (Fri, 06 Mar 2009) Log Message: ----------- Cannot nest nowiki Modified Paths: -------------- trunk/pgsrc/Help%2FWikicreole Modified: trunk/pgsrc/Help%FWikicreole =================================================================== --- trunk/pgsrc/Help%2FWikicreole 2009-03-06 10:21:19 UTC (rev 6647) +++ trunk/pgsrc/Help%2FWikicreole 2009-03-06 10:44:13 UTC (rev 6648) @@ -1,4 +1,4 @@ -Date: Sun, 22 Feb 2009 19:16:30 +0000 +Date: Fri, 6 Mar 2009 11:43:35 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -228,16 +228,10 @@ Between three opening curly brackets and three closing curly brackets, no wiki markup is interpreted. {{{ -{{{ //This// does **not** get [[formatted]] }}} -}}} {{{ -//This// does **not** get [[formatted]] -}}} - -{{{ Some examples of markup are: {{{** <i>this</i> ** }}} }}} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2011-01-04 11:38:17
|
Revision: 7802 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7802&view=rev Author: vargenau Date: 2011-01-04 11:38:12 +0000 (Tue, 04 Jan 2011) Log Message: ----------- Fix description: Underline text is made using two underscores Modified Paths: -------------- trunk/pgsrc/Help%2FWikicreole Modified: trunk/pgsrc/Help%2FWikicreole =================================================================== --- trunk/pgsrc/Help%2FWikicreole 2011-01-04 11:31:19 UTC (rev 7801) +++ trunk/pgsrc/Help%2FWikicreole 2011-01-04 11:38:12 UTC (rev 7802) @@ -1,4 +1,4 @@ -Date: Fri, 10 Sep 2010 13:46:13 +0000 +Date: Tue, 4 Jan 2011 12:37:33 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -44,7 +44,7 @@ === Underline === -Underline text is made using two hashes: +Underline text is made using two underscores: {{{ This sentence contains __underlined text__. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |