An open API service indexing awesome lists of open source software.

https://github.com/bschwind/html-parser

A small Clojure wrapper for the JSoup Java library. Intended to simply consume an HTML string and allow for CSS queries
https://github.com/bschwind/html-parser

Last synced: about 1 year ago
JSON representation

A small Clojure wrapper for the JSoup Java library. Intended to simply consume an HTML string and allow for CSS queries

Awesome Lists containing this project

README

          

# html-parser
[![Clojars Project](http://clojars.org/org.clojars.bschwind/html-parser/latest-version.svg)](http://clojars.org/org.clojars.bschwind/html-parser)

A small Clojure wrapper for the JSoup Java library. Intended to simply consume an HTML string and allow for CSS queries

Installation
------------
Add `[org.clojars.bschwind/html-parser "0.1.0"]` to your dependencies in `project.clj`.

Usage
-----
```
(def doc (document-from-string "Your HTML here"))
(println (select doc "html")))
```