Hackiki
Start page
License
Wiki syntax
Edit the meta-editor
(Python code)
View
-
Builtin editor
-
History
wikisyntax
= Wiki syntax This installation of Hackiki uses (roughly) the [[http://wikicreole.org/wiki/Creole1.0|WikiCreole]] wiki syntax, implemented in [[edit/bin/.wiki|.wiki]] and [[edit/lib/python/creole.py|creole.py]]. The only major difference is that code sections can have a chebang line and be interpreted code. == Basic WikiCreole syntax: |=Syntax|=Display| |~**bold~**|**bold**| |~//italics~//|//italics//| |~= Large heading| = Large heading| |~====== Small heading| ====== Small heading| |~[[link~]]|[[link]]| |line~\\break|line\\break| Note that the largest heading size will be interpreted as the title of the page. There can only be one element on the page of the largest heading size. For more syntax, see http://wikicreole.org/wiki/Creole1.0 == Interpreted code ~{{{\\ ~#!/usr/bin/python\\ print "Hello!"\\ ~}}} will print this: {{{ #!/usr/bin/python print "Hello!" }}}