History: MediaWiki versus Tiki
Source of version: 25 (current)
Copy to clipboard
{maketoc}
!!Reliance on HTML
__MediaWiki:__
MediaWiki relies a great deal on HTML markup. Subscript, superscript, monospace, line breaks, ...
__Tiki:__
Due to the various edit plugins and the ability to use CSS classes to style the various tags, there's absolutely no need to resort to HTML.
HTML is disabled in this wiki.
!!Line breaks
__MediaWiki:__
Line break handling in MediaWiki is quite elaborate - see [http://en.wikipedia.org/wiki/Wikipedia:Line_break_handling|Wikpedia - Line Break Handling]
It usually requires extra line breaks and/or the {MONO()}~np~<br />~/np~{MONO} tag.
__Tiki:__
When you make a line break, you get a line break. It's that simple.
No need to make double line breaks or use the {MONO()}~np~<br />~/np~{MONO} tag.
!!Common markup
{FANCYTABLE(head="Markup|Tiki|MediaWiki",sortable="y")}
{SUB()}Sub{SUB}script | ~np~{SUB()}sub{SUB}script~/np~ | ~np~<sub>sub</sub>script~/np~
{SUP()}Super{SUP}script | ~np~{SUP()}super{SUP}script~/np~ | ~np~<sup>super</sup>script~/np~
--Strikethrough-- | ~np~--strikethrough--~/np~ | ~np~<s>strikethrough</s>~/np~
{MONO()}Monospace{MONO} | ~np~{MONO()}Monospace{MONO}~/np~ | ~np~<tt>monospace</tt>~/np~
===Underline=== |~np~===underline===~/np~ | ~np~<u>underline</u>~/np~
''Italic'' | ~np~''italic''~/np~ | ~np~''italic''~/np~
__Bold__ | ~np~__bold__~/np~ | ~np~'''bold'''~/np~
{FANCYTABLE}
!!Headlines
__MediaWiki:__
~np~==Section==~/np~
~np~===Subsection===~/np~
~np~====Sub-subsection====~/np~
__Tiki:__
~np~-= Titlebar =-~/np~
~np~! Level 1~/np~
~np~!! Level 2~/np~
~np~!!! Level 3~/np~
~np~!!!! Level 4~/np~
~np~!!!!! Level 5~/np~
!!Internal links
__MediaWiki:__
~np~[[a link]]~/np~
~np~[[a link|with title]]~/np~
__Tiki:__
~np~((a link))~/np~
~np~((a link|with title))~/np~
!!External links
__MediaWiki:__
~np~[http://example.org The title]~/np~
__Tiki:__
~np~[http://example.org|The title]~/np~
!!What happended to the templates?
They are not really needed, as it's much faster and more flexible to use the DIV and BOX tags.
You can use styles - take a look at ((Wiki Styles)).
!!See also
[http://dev.tikiwiki.org/GSOC+2009%3A+Comparative+table+between+MediaWiki+and+TikiWiki+syntax|Comparative table between MediaWiki and TikiWiki syntax]