edown icon indicating copy to clipboard operation
edown copied to clipboard

EDoc extension for generating Github-flavored Markdown

Results 8 edown issues
Sort by recently updated
recently updated
newest added

## List of modifications - Makefile - Remove the need for the rebar3 application in the project folder. Added download over the network. - `./make_doc` - Fix missing path error...

Here is an example: -spec f(foo) -> bar; (bar) -> baz. Before this patch, rendering the docs with rebar3 would crash with the following exception: edoc: error in layout 'edown_layout':...

Support for specs with multiple clauses has been added to EDoc. Would be nice to have in edown too. Currently it crashes. Example: ```Erlang -spec f(foo) -> bar; (bar) ->...

Example: https://macpie.github.io/erlang-libp2p/

Generated by https://github.com/jsoref/spelling `f`; to maintain your repo, please consider `fchurn`

We have been using this fantastically helpful plugin to build the Erlang API documentation for the [AtomVM](https://www.atomvm.net/doc/release-0.6) project (https://github.com/atomvm/AtomVM). This allows us to include the Erlang API documentation with the...

This PR corrects misspellings identified by the [check-spelling action](https://github.com/marketplace/actions/check-spelling) The misspellings have been reported at https://github.com/jsoref/uwiger-edown/actions/runs/18447484478/attempts/1#summary-52556243143 The action reports that the changes in this PR would make it happy: https://github.com/jsoref/uwiger-edown/actions/runs/18447484581/attempts/1#summary-52556243311

The idea: EDoc supports generation of doc chunks from edoc syntax, using e.g. a config like this: ``` {edoc_opts, [{doclet, edoc_doclet_markdown}, {preprocess, true}, {layout, edoc_layout_chunks}]}. ``` Running `rebar3 edoc` with...