https://github.com/septechx/alpha-html
Zig library for parsing a superset of html
https://github.com/septechx/alpha-html
html parser zig
Last synced: 3 months ago
JSON representation
Zig library for parsing a superset of html
- Host: GitHub
- URL: https://github.com/septechx/alpha-html
- Owner: septechx
- License: lgpl-3.0
- Created: 2025-01-18T17:58:42.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-19T16:28:31.000Z (over 1 year ago)
- Last Synced: 2025-02-19T17:23:54.547Z (over 1 year ago)
- Topics: html, parser, zig
- Language: Zig
- Homepage:
- Size: 71.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# α-html
## Installing
First run:
```sh
zig fetch --save git+https://github.com/septechx/alpha-html#0.1.4
```
Then add this to your `build.zig` before `b.installArtifact(exe)`:
```zig
const @"alpha-html" = b.dependency("alpha-html", .{
.target = target,
.optimize = optimize,
});
exe.root_module.addImport("alpha-html", @"alpha-html".module("alpha-html"));
```