Metadata-Version: 2.4
Name: hquery
Version: 1.0.0
Summary: HTML DSL Language
Author-email: Sarthak Ghoshal <sarthak22.ghoshal@gmail.com>
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: typer[all]
Requires-Dist: colorama

# .h.sql

```sql
-- main.h.sql

-- This is the head section
head:
CREATE title CONTAINS "example site" WITH (ID = "title") 
CREATE script WITH (SRC = "https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4")
body:
-- This is a body comment
CREATE div CONTAINS (
    CREATE h1 CONTAINS "1"
    CREATE h2 CONTAINS "2"
)
END
```

```bash
hquery </path/to/your/file.h.sql> --ofuscate <type>
```

ofuscation types:
* minify
* hex
* base64
* charcode

for no ofuscations use
```bash
hquery </path/to/your/file.h.sql>
```
