This is a page containing Markdown
Markdown is a neat way for writer types (as opposed to developer types) to "markup" content.
Originally implemented in (i believe) perl by John Gruber of daringfireball fame.
I hardly know enough about markdown to write something useful about it, but I know enough to
realize you can't really have a framework that doesn't support it.
Rather than reinvent the wheel, I opted to use a particularly good third party implementation
of the parser/transformer, by Michel Fortin
to integrate.
This TabPage contains a single red.web.ui.controls.StaticText control with the isMarkDown flag set to true.
One thing you can easilly do with Markdown is format a piece of code:
class Demonstration
{
public void DoSomething()
{
MessageBox.Show("Hello, World!");
}
}