I'm using the Html Agility Pack
plugin to handle html
And I'd like it to capture my elements using% custom%
I tried the following:
HtmlDocument html = new HtmlDocument();
html.Load(new StringReader(Document.Content)); //Aqui é o meu html, ele não possui <body> ele vem carregado do banco
var teste = html.DocumentNode.SelectNodes("//Tag-Teste"); //no html está <tag-teste>conteudo</tag-teste>
but the variable tag
returns me teste