Esempio n. 1
0
 static INodeList HtmlFragment(String code, String context)
 {
     var doc = Html("");
     var element = doc.CreateElement(context);
     return code.ToHtmlFragment(element);
 }
Esempio n. 2
0
 static INodeList HtmlFragment(String code, IElement context = null)
 {
     return code.ToHtmlFragment(context);
 }