A really garbage HTML library.
Contains all sorts of functionality:
- HTML escaping that probably isn't insecure
- America's #1 worst templating system
- Add this as a dependency in your
project.clj
:
[htmhell "0.1.0"]
- Write your garbage code:
(require '[htmhell.core :as html])
(def my-html-escaped-string (html/escape "<script>alert('Jerry, hello!');</script>"))
- Write your garbage template:
<!-- resources/index.html -->
<html>
<div>Kramer's first name is {{name}}.</div>
</html>
- Render your garbage data:
(def my-html (html/render-template "index.html" {:name "Cosmo"}))
- Does it do
<blank>
?
No.
- How does it do
<blank>
?
Regex, mostly.
- Is there any redeeming value here?
You be the judge!
Copyright © 2015 Jim Brusstar
Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.