Skip to content
This repository has been archived by the owner on Aug 11, 2024. It is now read-only.

chuqingq/xml_dom

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

xml_dom

simple xml dom parser for erlang

test.xml:

<a>
    <b c="1" d="2">hello
    </b>
    <c />
</a>

Parsed result is:

2> xml_dom:simple_form("test.xml").
{ok,{"a",[],
     [{"b",[{"c","1"},{"d","2"}],"hello\n  "},{"c",[],[]}]}}
3>

About

simple xml dom parser for erlang

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages