├── .formatter.exs ├── .github └── workflows │ ├── ci.yml │ └── up_ex_doc_version.yml ├── .gitignore ├── .tool-versions ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── assets └── screenshot.png ├── examples ├── mermaid_map │ ├── README.md │ ├── rebar.config │ └── src │ │ ├── mermaid_map.app.src │ │ └── mermaid_map.erl ├── mermaid_mfa │ ├── README.md │ ├── rebar.config │ └── src │ │ ├── mermaid_mfa.app.src │ │ └── mermaid_mfa.erl └── mylib │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── _checkouts │ └── rebar3_ex_doc │ ├── rebar.config │ ├── rebar.lock │ └── src │ ├── mylib.app.src │ └── mylib.erl ├── lib └── mix │ └── tasks │ └── up_ex_doc_version.ex ├── mix.exs ├── mix.lock ├── rebar.config ├── rebar.lock ├── release.sh ├── src ├── rebar3_ex_doc.app.src └── rebar3_ex_doc.erl └── test └── rebar3_ex_doc_SUITE.erl /.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/.formatter.exs -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/up_ex_doc_version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/.github/workflows/up_ex_doc_version.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/.gitignore -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | erlang 27.0 2 | elixir 1.17.2-otp-27 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/README.md -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /examples/mermaid_map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/examples/mermaid_map/README.md -------------------------------------------------------------------------------- /examples/mermaid_map/rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/examples/mermaid_map/rebar.config -------------------------------------------------------------------------------- /examples/mermaid_map/src/mermaid_map.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/examples/mermaid_map/src/mermaid_map.app.src -------------------------------------------------------------------------------- /examples/mermaid_map/src/mermaid_map.erl: -------------------------------------------------------------------------------- 1 | -module(mermaid_map). 2 | 3 | -export([]). 4 | -------------------------------------------------------------------------------- /examples/mermaid_mfa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/examples/mermaid_mfa/README.md -------------------------------------------------------------------------------- /examples/mermaid_mfa/rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/examples/mermaid_mfa/rebar.config -------------------------------------------------------------------------------- /examples/mermaid_mfa/src/mermaid_mfa.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/examples/mermaid_mfa/src/mermaid_mfa.app.src -------------------------------------------------------------------------------- /examples/mermaid_mfa/src/mermaid_mfa.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/examples/mermaid_mfa/src/mermaid_mfa.erl -------------------------------------------------------------------------------- /examples/mylib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/examples/mylib/.gitignore -------------------------------------------------------------------------------- /examples/mylib/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/examples/mylib/LICENSE.md -------------------------------------------------------------------------------- /examples/mylib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/examples/mylib/README.md -------------------------------------------------------------------------------- /examples/mylib/_checkouts/rebar3_ex_doc: -------------------------------------------------------------------------------- 1 | ../../../../rebar3_ex_doc -------------------------------------------------------------------------------- /examples/mylib/rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/examples/mylib/rebar.config -------------------------------------------------------------------------------- /examples/mylib/rebar.lock: -------------------------------------------------------------------------------- 1 | []. 2 | -------------------------------------------------------------------------------- /examples/mylib/src/mylib.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/examples/mylib/src/mylib.app.src -------------------------------------------------------------------------------- /examples/mylib/src/mylib.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/examples/mylib/src/mylib.erl -------------------------------------------------------------------------------- /lib/mix/tasks/up_ex_doc_version.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/lib/mix/tasks/up_ex_doc_version.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/mix.lock -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/rebar.config -------------------------------------------------------------------------------- /rebar.lock: -------------------------------------------------------------------------------- 1 | []. 2 | -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/release.sh -------------------------------------------------------------------------------- /src/rebar3_ex_doc.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/src/rebar3_ex_doc.app.src -------------------------------------------------------------------------------- /src/rebar3_ex_doc.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/src/rebar3_ex_doc.erl -------------------------------------------------------------------------------- /test/rebar3_ex_doc_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelly-beam/rebar3_ex_doc/HEAD/test/rebar3_ex_doc_SUITE.erl --------------------------------------------------------------------------------