Code Block
Allows for text to be formatted as code for languages in which syntax highlighting is not supported.
Source Markup
// multi-line
{{
public static void Main()
{
// code goes here
}
}}
// single line
{{ single line of text }}
Rendered Markup
// multi-line
public static void Main()
{
// code goes here
}
// single line
single line of text