Packages
rebar3 plugin for generating docs with ex_doc
Retired package: Release invalid - rebar3_ex_doc was transferred to a new owner and this version is not related to the current version of rebar3_ex_doc
Current section
Files
Jump to
Current section
Files
rebar3_ex_doc
README.md
README.md
rebar3_ex_doc
=====
A rebar plugin to build ex_doc documentation for the erlang edoc-annotated libraries
Build
-----
$ rebar3 compile
Use
---
Add the plugin to your rebar config:
```erlang
{plugins, [
{rebar3_ex_doc, {git, "https://host/user/rebar3_ex_doc.git", {branch, "master"}}}
]}.
{ex_doc, [
{source_url, "https://github.com/<owner>/<repo>"}
]}.
```
Then just call your plugin directly in an existing application:
```shell
$ rebar3 ex_doc
```