Part of: How to understand the Tutorialpedia Syntax
This features allows editors to include portions of code that are ignored by the parser. This is useful for pasting source code.
Example
`code(language:'php' version:'5.2')
{`
if ($a == $b)
{
print 'Hello World!';
}
else
{
exit('Bye World!');
}
`}
This will display:
if ($a == $b) { print 'Hello World!'; } else { exit('Bye World!'); }