Skip to content

Commit 82c7663

Browse files
committed
Remove links to guides
1 parent de0365f commit 82c7663

File tree

6 files changed

+0
-18
lines changed

6 files changed

+0
-18
lines changed
Binary file not shown.
-21.5 KB
Binary file not shown.

downloads/books/mix-and-otp.epub

-139 KB
Binary file not shown.

getting-started/introduction.markdown

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,6 @@ Let's get started!
1818

1919
> If you find any errors in the tutorial or on the website, [please report a bug or send a pull request to our issue tracker](https://github.com/elixir-lang/elixir-lang.github.com).
2020
21-
> The Elixir guides are also available in EPUB format:
22-
>
23-
> * [Getting started guide](https://elixir-lang.org/downloads/books/elixir-getting-started-guide.epub)
24-
> * [Mix and OTP guide](https://elixir-lang.org/downloads/books/mix-and-otp.epub)
25-
> * [Meta-programming guide](https://elixir-lang.org/downloads/books/meta-programming-in-elixir.epub)
26-
2721
## Installation
2822

2923
If you haven't yet installed Elixir, visit our [installation page](/install.html). Once you are done, you can run `elixir --version` to get the current Elixir version.

getting-started/meta/quote-and-unquote.markdown

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,6 @@ category: Meta-programming in Elixir
77

88
This guide aims to introduce the meta-programming techniques available in Elixir. The ability to represent an Elixir program by its own data structures is at the heart of meta-programming. This chapter starts by exploring those structures and the associated `quote` and `unquote` constructs, so we can take a look at macros in the next chapter and finally build our own domain specific language.
99

10-
> The Elixir guides are also available in EPUB format:
11-
>
12-
> * [Getting started guide](https://repo.hex.pm/guides/elixir/elixir-getting-started-guide.epub)
13-
> * [Mix and OTP guide](https://repo.hex.pm/guides/elixir/mix-and-otp.epub)
14-
> * [Meta-programming guide](https://repo.hex.pm/guides/elixir/meta-programming-in-elixir.epub)
15-
1610
## Quoting
1711

1812
The building block of an Elixir program is a tuple with three elements. For example, the function call `sum(1, 2, 3)` is represented internally as:

getting-started/mix-otp/introduction-to-mix.markdown

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,6 @@ In this chapter, we will create our first project using Mix and explore differen
4646
>
4747
> The final code for the application built in this guide is in [this repository](https://github.com/josevalim/kv_umbrella) and can be used as a reference.
4848
49-
> The Elixir guides are also available in EPUB format:
50-
>
51-
> * [Getting started guide](https://repo.hex.pm/guides/elixir/elixir-getting-started-guide.epub)
52-
> * [Mix and OTP guide](https://repo.hex.pm/guides/elixir/mix-and-otp.epub)
53-
> * [Meta-programming guide](https://repo.hex.pm/guides/elixir/meta-programming-in-elixir.epub)
54-
5549
## Our first project
5650

5751
When you install Elixir, besides getting the `elixir`, `elixirc` and `iex` executables, you also get an executable Elixir script named `mix`.

0 commit comments

Comments
 (0)