Markdown testing
Testing out the built in markdown language in Toto. It turns out that Toto is using the rdiscount markdown implementation.
The markdown syntax can be found here.
Code
Is it possible to show code samples with this language?
Can I write C#?
public void HelloWorld() {
Console.WriteLine("hello world");
}
HTML should not be a problem either
<html>
<body>
<script>
alert("hello world");
</script>
</body>
</html>
Lists
- One
- Two
- Three
- Second level
- Third level
- Second level
Images


Inline HTML
This is bold?
public static void HOHO()
{
if (true) {
Console.WriteLine("hohoho");
}
}
November 1st 2011