1
0
Fork 0
This repository has been archived on 2019-12-19. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
neinomaten/vendor/htree
2006-04-17 14:17:33 +00:00
..
htree ALL YOUR LIBRARIES ARE BELONG TO US 2006-04-17 14:17:33 +00:00
test ALL YOUR LIBRARIES ARE BELONG TO US 2006-04-17 14:17:33 +00:00
.cvsignore ALL YOUR LIBRARIES ARE BELONG TO US 2006-04-17 14:17:33 +00:00
htree.rb ALL YOUR LIBRARIES ARE BELONG TO US 2006-04-17 14:17:33 +00:00
install.rb ALL YOUR LIBRARIES ARE BELONG TO US 2006-04-17 14:17:33 +00:00
Makefile ALL YOUR LIBRARIES ARE BELONG TO US 2006-04-17 14:17:33 +00:00
README.rd ALL YOUR LIBRARIES ARE BELONG TO US 2006-04-17 14:17:33 +00:00
test-all.rb ALL YOUR LIBRARIES ARE BELONG TO US 2006-04-17 14:17:33 +00:00

= htree - HTML/XML tree library

htree provides a tree data structure which represent HTML and XML data.

== Features

* Permissive unified HTML/XML parser
* byte-to-byte round-tripping unparser
* XML namespace support
* Dedicated class for escaped string.  This ease sanitization.
* HTML/XHTML/XML generator
* template engine
* recursive template expansion
* converter to REXML document

== Home Page

((<URL:http://cvs.m17n.org/~akr/htree/>))

== Download

* ((<URL:http://cvs.m17n.org/viewcvs/ruby/htree.tar.gz>))

== Install

  % ruby install.rb

== Reference Manual

((<URL:doc/index.html>))

== Usage Example

Following two-line script convert HTML to XHTML.

  require 'htree'
  HTree(STDIN).display_xml

The conversion method to REXML is provided as to_rexml.

  HTree(...).to_rexml

== License

Ruby's

== Author
Tanaka Akira <akr@m17n.org>