Skip to content

Zig library for parsing a superset of html

License

Notifications You must be signed in to change notification settings

septechx/alpha-html

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

85 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

α-html

Installing

First run:

zig fetch --save git+https://github.com/septechx/alpha-html#0.2.3

Then add this to your build.zig before b.installArtifact(exe):

const @"alpha-html" = b.dependency("alpha-html", .{
    .target = target,
    .optimize = optimize,
});

exe.root_module.addImport("alpha-html", @"alpha-html".module("alpha-html"));