Exemplo n.º 1
0
        static void Main(string[] args)
        {
            var htmlDoc = new HtmlDocument();
            var anchor  = new AnchorNode();
            var header  = new HeadingNode();

            htmlDoc.Add(anchor);
            htmlDoc.Add(header);
            htmlDoc.Execute(new HighlightOperation());
            htmlDoc.Execute(new PlainTextOperation());
            Console.ReadKey();
        }
Exemplo n.º 2
0
 public void Apply(AnchorNode anchor)
 {
     Console.WriteLine("PlainTextOperation Anchor");
 }
Exemplo n.º 3
0
 public void Apply(AnchorNode anchor)
 {
     Console.WriteLine("Highlight Anchor");
 }
Exemplo n.º 4
0
 public void Apply(AnchorNode anchor)
 {
     Console.WriteLine("Extract plain text from anchor");
 }
Exemplo n.º 5
0
 public void Apply(AnchorNode anchor)
 {
     Console.WriteLine("text-anchor");
 }
Exemplo n.º 6
0
 public void apply(AnchorNode anchor)
 {
     Console.WriteLine("Highlighting Anchor Node.");
 }