Example #1
0
 public HtmlCodeFormatter(TextWriter writer, IDictionary<Address, Procedure> procedureMap)
     : base(new HtmlFormatter(writer))
 {
     this.formatter = (HtmlFormatter)InnerFormatter;
     this.formatter.Terminator = "<br />" + Environment.NewLine;
     this.procedureMap = procedureMap;
 }
Example #2
0
 public void Setup()
 {
     sb = new StringWriter();
     hf = new HtmlFormatter(sb);
 }