info.ss
;;;; info.ss -- General information about the HTML Parser package
;;
;; Copyright (c) 2003-2008 Alex Shinn.  All rights reserved.
;; BSD-style license: http://synthcode.com/license.txt

#lang setup/infotab

(define name "HTML Parser")
(define blurb
  '("A fully customizable, practical HTML parser, "
    "with an htmlprag-compatible html->sxml interface, "
    "as well as an SSAX-like lazy tree-folding interface."))
(define scribblings '(("html-parser.scrbl" ())))
(define primary-file "html-parser.ss")
(define categories '(xml io))
(define homepage "http://synthcode.com/scheme/html-parser.scm")
(define version "1.1")

(define release-notes
  '((p "Updated the info.ss and cut over docs to Scribble.")))
(define can-be-loaded-with 'all)