Skip to content

Instantly share code, notes, and snippets.

View zambal's full-sized avatar

Vincent Siliakus zambal

  • Amsterdam, Netherlands
View GitHub Profile
@zambal
zambal / xmerl_demo.ex
Last active December 31, 2015 00:29 — forked from sasa1977/xmerl_demo.ex
defrecord :xmlAttribute, Record.extract(:xmlAttribute, from_lib: "xmerl/include/xmerl.hrl")
defrecord :xmlText, Record.extract(:xmlText, from_lib: "xmerl/include/xmerl.hrl")
defrecord XmlNode, element: nil do
def from_string(xml_string, options // [quiet: true]) do
{doc, []} =
xml_string
|> to_unicode_char_list
|> :xmerl_scan.string(options)