Skip to content

Commit

Permalink
Add ex_doc, fix Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
uwiger committed Oct 8, 2023
1 parent cdb01ba commit d37cead
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ test:
$(REBAR3) eunit

doc:
$(REBAR3) doc
$(REBAR3) edoc

13 changes: 11 additions & 2 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,20 @@
]}.
{xref_checks, [undefined_function_calls]}.

{ex_doc, [
{extras, ["README.md", "LICENSE"]},
{main, "README.md"},
{source_url, "https://github.com/uwiger/parse_trans"}
]}.

{hex, [{doc, ex_doc}]}.

{profiles,
[{docs,
[{doc,
[
{deps, [{edown, "0.8.4"}]},
{deps, [{edown, "0.9.1"}]},
{edoc_opts, [{doclet, edown_doclet},
{branch, "master"},
{top_level_readme,
{"./README.md",
"http://github.com/uwiger/parse_trans",
Expand Down

0 comments on commit d37cead

Please sign in to comment.