Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Downloadable Elixir documentation

Tags:

elixir

I have been searching Elixir Web Site for a downloadable archive of the Elixir documentation as html file but I could not find any.

So is the only solution to generate it from the sources or should I get myself a pair of glasses ?

like image 455
mszmurlo Avatar asked Jan 02 '16 09:01

mszmurlo


2 Answers

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
like image 115
Hécate Avatar answered Oct 31 '22 11:10

Hécate


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

I have also changed elixir-lang.org to offer links to the docs. The change should be up tomorrow when announce 1.2 on the site.

like image 37
José Valim Avatar answered Oct 31 '22 13:10

José Valim