Exemplo n.º 1
0
 new public static string Transform(string text, TextTransformerConfig config)
 {
     return new Transformer.NET.Html.HtmlTransformer(text, config).Transform();
 }
Exemplo n.º 2
0
 public HtmlTransformer(string text, TextTransformerConfig config) : base(text, config) { }
Exemplo n.º 3
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="text"></param>
 /// <param name="config"></param>
 public ExtNetTransformer(string text, TextTransformerConfig config)
     : base(text, config)
 {
     this.InitSelectors();
 }
Exemplo n.º 4
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="text"></param>
 /// <param name="config"></param>
 /// <returns></returns>
 new public static string Transform(string text, TextTransformerConfig config)
 {
     return(new ExtNetTransformer(ExtNetTransformer.PrepareText(text), config).Transform());
 }
Exemplo n.º 5
0
 public HtmlTransformer(string text, TextTransformerConfig config) : base(text, config)
 {
 }
Exemplo n.º 6
0
 new public static string Transform(string text, TextTransformerConfig config)
 {
     return(new Transformer.NET.Html.HtmlTransformer(text, config).Transform());
 }