Polebrush markup language parser
================================

Building :
----------

First you need to get
* an OCaml compiler >= 3.11 (http://caml.inria.fr/ocaml);
* GNU Make (http://www.gnu.org/software/make/);
* findlib which provide ocamlfind command
  (http://projects.camlcity.org/projects/findlib.html);
* extlib for OCaml (http://www.cduce.org/ocaml.html)

Optionaly (for OCamlduce support):
* OCamlduce - modified OCaml compiler (http://www.cduce.org/ocaml.html)
* TyXML (http://ocsigen.org/tyxml/)

Then run:

  make

And test it:

  echo 'h1. Hello *world*!' | ./polebrush
  <h1>Hello <strong>world</strong>!</h1>

If you are OCaml programmer and want to generate documentation, run:

  make doc

Installation :
--------------

If you want to install OCaml library, run:

  make install-lib

If you want to uninstall OCaml library, run:

  make uninstall-lib

See also
--------

* polebrush home: http://komar.bitcheese.net/en/code/polebrush

