BbCodeComponent

This is the base of a parsed BBCode group. Various types of bbcode tags should be subclasses of it

class BbCodeComponent {
bool setBlock;
BbCodeComponent[] children;
BbCodeComponent parent;
string tagName;
string attributeValue;
}

Members

Functions

toHtml
Element toHtml(Document document)

converts itself to an HTML element

toPlainText
string toPlainText()

Outputs email style text

toString
string toString()

outputs its own source code

Suggestion Box / Bug Report