xml2json-0.1.0.0: translate xml to json

Safe HaskellNone

Text.XML.ToJSON.Builder

Documentation

type Str = TextSource

data Element Source

Constructors

Element 

Fields

elAttrs :: [(Str, Str)]
 
elValues :: [Str]
 
elChildren :: [(Str, Element)]
 

Instances

type Stack = [(Str, Element)]Source

type Builder = State Stack ()Source