Exemplo n.º 1
0
 public void Go()
 {
     new RsWithHeaders(
         new RsText(
             _origin,
             _htmlDoc.AsHtml()
             ),
         headers
         ).Go();
 }
Exemplo n.º 2
0
 public Text AsHtml()
 {
     return(new DcTemplate(
                new DcTextFile(
                    new FilePath("~/App_Data/Templates/Html/MainPage.html").Unwrap()
                    ),
                new Dictionary <string, Text>()
     {
         { "content", _content.AsHtml() }
     }
                ).AsText());
 }