zigler v0.3.0-pre mix zig_doc View Source

Used to generate documentation from your zig code and incorporate it into your Elixir documentation.

Generally speaking, zig structs will be documented as Elixir modules and zig functions will be incorporated as Elixir functions.

If you want to make the zig docgen process override the Elixir mix docs task, add this to your mix.exs:

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