Downloadable Elixir Documentation

I searched the Elixir website for a downloadable Elixir documentation archive as an html file, but I could not find it.

So, is this the only solution for creating it from sources, or should I get a couple of points?

+5
source share
3 answers

Starting with Elixir v1.1.0, we include documents as part of the releases: https://github.com/elixir-lang/elixir/releases/tag/v1.2.0 . Just go to the bottom of the page and you will find a link to download them.

I also modified elixir-lang.org to offer links to documents. The change should be tomorrow when it announces 1.2 on the site.

+3
source
wget https://github.com/elixir-lang/docs/archive/gh-pages.zip unzip gh-pages.zip 

or

 git clone https://github.com/elixir-lang/docs.git 
+4
source

For linux you can use Zeal (Dash for Linux)

+3
source

Source: https://habr.com/ru/post/1239662/


All Articles