This is a quick look at the wiki syntax supported on this site.
This might change in the future. Well, might is a understatement, it will change soon. For the better obviously. :)
Horizontal rule
Typed as
---
gives this result:
Bold syntax:
Typed as
b[some text]b
**some text too**
gives this result:
some text
some text too
Italic syntax:
Typed as
i[some text]i
//some text too//
gives this result:
some text
some text too
Link syntax:
Typed as
http://url.com
ftp://url.com
https://url.com
[[http://url.com anchor text]]
[fpgui]
gives this result:
http://url.com
ftp://url.com
https://url.com
anchor text
fpgui
Note that the single square brackets mean it is a internal wiki link to another wiki page.
Pre-formatted text/code:
Typed as
--code
for i := 1 to 5 do
writeln;
code--
gives you this result:
for i := 1 to 5 do
writeln;
Some Heading 1
And this is more text blah
Some Heading 2
And this is more text blah
And this is more text blah
Some Heading 3
And this is more text blah
And this is more text blah
And this is more text blah
And everything put together
This is a test with a http://somesite.com/subdirectory/somefol...r/page.htm
And this is an anchor with spaces here
Here is an anchor without spaces website
begin
writeln('this is some code');
writeln;
end.
|