From 79640a16fa01ca35969d6e8bb56d745d8a047738 Mon Sep 17 00:00:00 2001 From: Akira Tempaku <paku@skyizwhite.dev> Date: Tue, 1 Apr 2025 01:36:49 +0900 Subject: [PATCH] Amend --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b98fe8a..72f9252 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # HSX – Hypertext S-expression -**HSX** is a lightweight and expressive HTML generation library for Common Lisp, inspired by JSX. It allows you to write HTML using native Lisp syntax. +**HSX** is a simple and powerful HTML generation library for Common Lisp, inspired by JSX. It allows you to write HTML using native Lisp syntax. -> 🚧 **ALPHA NOTICE:** +> 🚧 **BETA NOTICE:** > This library is still in early development. APIs may change. > See [release notes](https://github.com/skyizwhite/hsx/releases) for details. @@ -39,8 +39,6 @@ Is internally transformed (by macro expansion) into: (list)))) ``` -This is made possible via the hsx macro, which detects HTML tags and components, then rewrites them using create-element. Tags are converted to keywords (e.g., div → :div), and custom components (starting with ~) are passed as functions. - ## 🚀 Quick Example ```lisp