If I have an OTP layout like this:
foo/
- apps/
- bar1/
- src/
- bar2
- src/
How can I generate edoc for both bar1 and bar2?
If I run:
rebar3 edoc
what I get is separate .html files in bar1/doc and bar2/doc, and none of the links between them work (i.e. export types are not linked correctly).
Thank you.