Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pharo-contributions/XML-XMLParserStAX
XMLParserStAX is a pull parser for XMLParser
https://github.com/pharo-contributions/XML-XMLParserStAX
Last synced: 3 months ago
JSON representation
XMLParserStAX is a pull parser for XMLParser
- Host: GitHub
- URL: https://github.com/pharo-contributions/XML-XMLParserStAX
- Owner: pharo-contributions
- License: mit
- Created: 2019-11-04T20:59:04.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-17T17:39:19.000Z (about 5 years ago)
- Last Synced: 2024-11-14T11:15:10.018Z (3 months ago)
- Language: Smalltalk
- Homepage:
- Size: 313 KB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-pharo - XML-XMLParserStAX - Official XML pull parser for XMLParser maintained by Pharo community. (Data interexchange format)
README
# XML-XMLParserStAX
[![Build Status](https://travis-ci.org/pharo-contributions/XML-XMLParserStAX.svg?branch=master)](https://travis-ci.org/pharo-contributions/XML-XMLParserStAX) [![Coverage Status](https://coveralls.io/repos/github/pharo-contributions/XML-XMLParserStAX/badge.svg?branch=master)](https://coveralls.io/github/pharo-contributions/XML-XMLParserStAX?branch=master)
XMLParserStAX is a pull parser in [Pharo](http://www.pharo.org) for [XMLParser](https://github.com/pharo-contributions/XML-XMLParser) that provides a streaming interface for "pulling" XML events and also supports pull-style DOM parsing for dynamically converting events into DOM nodes.
## Installation
```Smalltalk
Metacello new
baseline: 'XMLParserStAX';
repository: 'github://pharo-contributions/XML-XMLParserStAX/src';
load.
```
## UsageA simple example on how to use the XML parser for HTML:
```Smalltalk
...
```results in the following XML output
```HTML
...
```## LICENSE
[MIT License](LICENSE)## History
This project was migrated from [http://smalltalkhub.com/#!/~PharoExtras/XMLParserStAX](http://smalltalkhub.com/#!/~PharoExtras/XMLParserStAX)