====== DokuWiki Notes ====== ===== General Documentation ===== * [[http://www.dokuwiki.org/manual|The DokuWiki Manual]] * [[http://www.dokuwiki.org/syntax|Formatting Syntax]] ===== Plugins ===== Plugins can be found at [[http://www.dokuwiki.org/plugins]] ==== blockquotes ==== //Plugin Documentation//: [[http://foosel.org/snippets/dokuwiki/blockquote]] //Example usage//:
This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text.which produces: \\ \\
This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text. This is a sample of blockquoted text.//Example usage//:
Test with a cite attribute...which produces: \\ \\
Test with a cite attribute...//Example usage//:
Test with a cite command...J. Random Hacker, [[http://localhost/~jrhacker]]which produces: \\ \\
Test with a cite command...J. Random Hacker, [[http://localhost/~jrhacker]]==== color ==== //Plugin Documentation//: [[http://www.dokuwiki.org/plugin:color]] //Example usage//:
public void sampleMethod(String inputString) {
String setMe = "The String Setting";
int index = 0;
while (index < 10) {
System.out.println(setMe);
index++;
}
System.out.println("The original string inputted was: " + inputString);
}
which produces:
public void sampleMethod(String inputString) {
String setMe = "The String Setting";
int index = 0;
while (index < 10) {
System.out.println(setMe);
index++;
}
System.out.println("The original string inputted was: " + inputString);
}
//Language Aliases// - The following languages are supported:
^Language ^Aliases ^
|C++ |cpp, c, c++|
|C# |c#, c-sharp, csharp|
|CSS |css|
|Delphi |delphi, pascal|
|Java |java|
|Java Script |js, jscript, javascript|
|PHP |php|
|Python |py, python|
|Ruby |rb, ruby, rails, ror|
|Sql |sql|
|VB |vb, vb.net|
|XML/HTML |xml, html, xhtml, xslt|
//Configuration Options// - The options are passed together with the language alias and are separated by a colon character.
For example: '' ... ''
^ Options ^^
|lang |Language Alias (see above).|
|nogutter |Will display no gutter.|
|showcontrols |Will display controls at the top.|
|collapse |Will collapse the block by default.|
|firstline[value] |Will begin line count at value. Default value is 1.|
|showcolumns |Will show row columns in the first line. |