# HSX (WIP)
HSX (hypertext s-expression) is an incredibly simple HTML5 generation library for Common Lisp.
This is a fork project of [flute](https://github.com/ailisp/flute/), originally created by Bo Yao.
# Usage
Using the `hsx` macro, you can implement HTML with S-expression.
```lisp
(hsx
(div :id "greeting" :class "flex"
(h1 "Hello World")
(p
"This is"
(strong "example!"))))
↓ ↓ ↓
Hello World
This is
example!
```
HSX elements are essentially functions, so you can freely compose them and embed CL code to them.
```lisp
(hsx
(div
(p :id (+ 1 1))
(ul
(loop
:for i :from 1 :to 3
:collect (li (format nil "item~a" i))))
(if t
(p "true")
(p "false"))))
↓ ↓ ↓
```
To define a component, just define a function that accepts keyword arguments or property list or both, and define HSX element with `defhsx` macro.
`children` is a special property that accepts children of a component.
```lisp
(defhsx card #'%card)
(defun %card (&key title children)
(hsx
(div
(h1 title)
children)))
or
(defhsx card #'%card)
(defun %card (&rest props)
(hsx
(div
(h1 (getf props :title))
(getf props :children))))
(hsx
(card :title "card1"
(p "brah brah brah...")))
↓ ↓ ↓
```
The previous definition can be simplified by using the `defcomp` macro.
```lisp
(defcomp card (&key title children)
(hsx
(div
(h1 title)
children)))
```
# License
This project is licensed under the terms of the MIT license.
Copyright (c) 2024, skyizwhite.
Copyright (c) 2018, Bo Yao.