Skip to content

Instantly share code, notes, and snippets.

@AlexanderWingard
Created May 25, 2009 12:49
Show Gist options
  • Save AlexanderWingard/117531 to your computer and use it in GitHub Desktop.
Save AlexanderWingard/117531 to your computer and use it in GitHub Desktop.
(msnerl@localhost)1> {DOM, _} = xmerl_scan:string("<a apa=\"1\"><b>hello</b></a>").
{{xmlElement,a,a,[],
{xmlNamespace,[],[]},
[],1,
[{xmlAttribute,apa,[],[],[],[],1,[],"1",false}],
[{xmlElement,b,b,[],
{xmlNamespace,[],[]},
[{a,1}],
1,[],
[{xmlText,[{b,1},{a,1}],1,[],"hello",text}],
[],"C:/home/git/msnerl/msnerl-0",undeclared}],
[],"C:/home/git/msnerl/msnerl-0",undeclared},
[]}
(msnerl@localhost)2> xmerl_lib:simplify_element(DOM).
{a,[{apa,"1"}],[{b,[],["hello"]}]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment