Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 642 Bytes

README.md

File metadata and controls

39 lines (27 loc) · 642 Bytes

ZigDoc

Parses Zig files and transforms them into ExDoc documentation.

Note: ZigDoc is pinned to versions of ExDoc as it uses private features in ExDoc.

This version of ZigDoc is pinned to zig 0.10.1

Usage

You'll want to alias the mix docs task to ZigDoc. In your mix.exs file:

def project do
  [
    ...
    aliases: [docs: "zig_doc", ...]
    ...
  ]
end

Configuration

Installation

The package can be installed by adding zig_doc to your list of dependencies in mix.exs:

def deps do
  [
    {:zig_doc, "~> 0.1.2"}
  ]
end

Documentation can be found at https://hexdocs.pm/zig_doc.