Skip to content

Latest commit

 

History

History
50 lines (37 loc) · 1.3 KB

README.md

File metadata and controls

50 lines (37 loc) · 1.3 KB

HTML to CL-WHO

cl-who is a common library for HTML rendering in Common Lisp. The main issue is that all the example online are written in HTML... This tool lets you convert HTML to Sexp!

Getting started (without docker)

  1. Clone the repo into ~/common-lisp (or a path recognized by ASDF)
git clone https://github.com/albertolerda/html-to-cl-who.git
  1. Run (inside sbcl)
(ql:quickload :html2clwho)
(asdf:load-system :html2clwho)
(html2clwho::main)

Now you can open the Browser: localhost:3333

Getting started (with docker)

  1. Clone the repo
git clone https://github.com/albertolerda/html-to-cl-who.git
  1. Build the image (sometimes it crashes, just run it again)
docker build -t html2clwho .
  1. Run it!
docker run -p 3333:3333 --rm html2clwho

Now you can open the Browser: localhost:3333

More reference

Youtube Demo

More info on asdf: ASDF Config ASDF Loading

Authors

License

MIT