“Simple” XML to canonical string parser
  
Attributes
            STATE_CONTENT
  
      module-attribute
  
STATE_CONTENT = 'content'
 
    
    
 
            STATE_INITIAL
  
      module-attribute
  
STATE_INITIAL = 'INITIAL'
 
    
    
 
            t_content_ATTRIBUTE
  
      module-attribute
  
    
    
 
            t_content_TAG_CLOSE
  
      module-attribute
  
    
    
 
            t_content_TAG_NAME
  
      module-attribute
  
    
    
 
            t_content_error
  
      module-attribute
  
    
    
 
            tokens
  
      module-attribute
  
tokens = (
    "TAG_OPEN",
    "TAG_NAME",
    "ATTRIBUTE",
    "TAG_CLOSE",
    "CONTENT",
)
 
    
    
 
Classes
            SimpleXML
SimpleXML(env: Environment)
 
    
 
Functions
            t_WHITESPACE
t_WHITESPACE(t: LexToken)
 
    
 
            t_content_CONTENT
t_content_CONTENT(t: LexToken)
 
    
 
            t_content_TAG_OPEN
t_content_TAG_OPEN(t: LexToken)