-
Notifications
You must be signed in to change notification settings - Fork 2
Code Blocks
Mark Junker edited this page Oct 25, 2024
·
2 revisions
Allows for text to be formatted as code for languages in which syntax highlighting is not supported.
// multi-line
{{
public static void Main()
{
// code goes here
}
}}
// single line
{{ single line of text }}
// multi-line
public static void Main()
{
// code goes here
}
// single line
single line of text
code