namespace Monodoc { using System; using System.Text; using System.Xml; class HtmlHelper { public static void Header (StringBuilder sb, string s) { sb.Append (""); sb.Append (s); sb.Append ("
"); } public static void BodyText (StringBuilder sb, string s) { sb.Append ("
"); sb.Append (s); sb.Append ("
"); } public static void RenderCaption (StringBuilder sb, string text) { sb.Append (String.Format ( "" + "
Mono Class Library

{0}

", text)); } public static void Signature (StringBuilder sb, string s) { sb.Append (String.Format ("
"+ "
{0}
" + "
", s)); } } }