From 63289ea608c21fe5f0024d99811ff626ea79f410 Mon Sep 17 00:00:00 2001 From: shahrul Date: Sat, 12 Oct 2024 00:06:27 +0800 Subject: [PATCH] update doc --- README.md | 2 +- luax-1.0.0-1.rockspec | 22 ---------------------- 2 files changed, 1 insertion(+), 23 deletions(-) delete mode 100644 luax-1.0.0-1.rockspec diff --git a/README.md b/README.md index f87a8b5..34c0383 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ ## LuaX -React JSX implementation in LUA. +Decent parse for HTML, so you don't have to write as concatenates string, in short a React JSX implementation in LUA. Luarocks Package [![Lua CI](https://github.com/syarul/luax/actions/workflows/lua.yml/badge.svg)](https://github.com/syarul/luax/actions/workflows/lua.yml) diff --git a/luax-1.0.0-1.rockspec b/luax-1.0.0-1.rockspec deleted file mode 100644 index 647363c..0000000 --- a/luax-1.0.0-1.rockspec +++ /dev/null @@ -1,22 +0,0 @@ -package = "luax" -version = "1.0.0-1" - -source = { - url = "https://github.com/syarul/luax/archive/refs/tags/v1.0.0.tar.gz", - dir = "luax-1.0.0" -} -description = { - summary = "HTML parse in Lua", - detailed = "Decent parse for HTML, so you don't have to write as concatenates string", - homepage = "https://github.com/syarul/luax", - license = "MIT" -} -dependencies = { - "lua >= 5.1" -} -build = { - type = "builtin", - modules = { - luax = "luax.lua" - } -}