This page is part of a static HTML representation of the TiddlyWiki at https://tiddlywiki.com/

Places where the parser ignores WikiText

 22nd January 2022 at 6:28pm

Text enclosed by these constructs is skipped by the parser and WikiText punctuation will be ignored:

Code Blocks in WikiTextOne of the main purposes of code blocks is to suppress wikitext expansion. Once the code block starts, the parser will ignore all WikiText punctuation until the code block ends.
Images in WikiText[[img|literal image link text]] - the text enclosed by square braces will be ignored. This means, for example, transclusions and macro calls cannot be used to dynamically construct the link text
Linking in WikiText[[literal link target|literal link text]] - the text enclosed by square braces will be ignored. This means, for example, transclusions and macro calls cannot be used to dynamically construct the link target or the link text
Macro Calls<<mymacro ''notbold'' "literal text" "<<macro_expansion_ignored>>" {{transclusion_ignored}}>> - while processing the text enclosed by a macro call, the parser will follow special rules for detecting macro parameters. These rules do not include detection of WikiText. However, after the parameters are substituted into the macro definition, the result will be parsed using normal rules. This will likely result in the detection of any WikiText.