2011-12-28 16:10:57 +00:00
|
|
|
title: NewWikiTextFeatures
|
|
|
|
modifier: JeremyRuston
|
|
|
|
|
2012-03-03 18:06:24 +00:00
|
|
|
It is proposed to extend the existing TiddlyWiki WikiText syntax with the following extensions
|
2011-12-28 16:10:57 +00:00
|
|
|
|
2012-01-20 12:19:13 +00:00
|
|
|
# Addition of {{{**bold**}}} character formatting
|
|
|
|
# Addition of {{{`backtick for code`}}} character formatting
|
|
|
|
# Addition of WikiCreole-style forced line break, e.g. {{{force\\linebreak}}}
|
|
|
|
# Addition of WikiCreole-style headings, e.g. {{{==Heading}}}
|
|
|
|
# Addition of WikiCreole-style headings in tables, e.g. {{{|=|=table|=header|}}}
|
2012-04-01 08:59:34 +00:00
|
|
|
# Addition of white-listed HTML and SVG tags intermixed with wikitext
|
2012-01-20 12:19:13 +00:00
|
|
|
# Addition of WikiCreole-style pretty links, e.g. {{{[[description -> link]]}}}
|
|
|
|
# Addition of multiline macros, e.g.
|
2011-12-28 16:10:57 +00:00
|
|
|
{{{
|
|
|
|
<<myMacro
|
|
|
|
param1: Parameter value
|
|
|
|
param2: value
|
|
|
|
"unnamed parameter"
|
|
|
|
param4: ((
|
|
|
|
A multiline parameter that can go on for as long as it likes
|
|
|
|
and contain linebreaks.
|
|
|
|
))
|
|
|
|
>>
|
2012-01-20 12:19:13 +00:00
|
|
|
}}}
|
2012-03-03 18:06:24 +00:00
|
|
|
# Addition of typed text blocks, e.g.
|
|
|
|
{{{
|
|
|
|
$$$.js
|
|
|
|
return "This will have syntax highlighting applied"
|
|
|
|
$$$
|
|
|
|
}}}
|