Skip to content
This repository has been archived by the owner on Mar 4, 2021. It is now read-only.

zenith391/vwxml

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vwxml

Pure V library for parsing XML. The data is accessed with a tree API accessible directly within the Node struct.

This library is now archived.

CI

Example: this parses <thing abc="test"><test>Hello</test></thing> to Node{name=_root_, text=, childrens=[Node{name=thing, text=, childrens=[Node{name=test, text=Hello, childrens=[], attributes=[]}], attributes=[Attribute{name=abc, value=test}]}], attributes=[]} (struct printed with println).

It doesn't support (yet):

  • CDATA sections
  • Error handling
  • Schemas (DTD)

The features listed above will all be supported soon

About

Pure V library for parsing XML to a DOM

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •