An open API service indexing awesome lists of open source software.

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

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"));

```