# ExDoc Cheatsheet, continuously improving documentation experience
ExDoc has a cool new feature, [Cheatsheets](https://hexdocs.pm/ex_doc/cheatsheet.html)!
In this blog post, we'll explain what that new feature is and the motivation behind it. We'll also take the opportunity to highlight other ExDoc features that show how it has been evolving to make the documentation experience in Elixir better and better.
## What is ExDoc Cheatsheet and how it improves documentation experience
ExDoc's Cheatsheets are Markdown files with the `.cheatmd` extension. One can use it to write cheatsheets about their Elixir project.
Writing and reading cheatsheets is not exactly a new thing for developers. But, what that feature brings as a novelty is a possibility of integrating a cheatsheet alongside the rest of the documentation of an Elixir project instead of hosting it in a different place.
Developers need different kinds of docs at different times. When one is learning about a new library, a guide format is proper. When one needs to know if a library can solve a specific problem, an API reference can be more appropriate. When someone wants to remember a couple of functions they already used from that library, a cheatsheet could be more practical.
Imagine if you had to go to a different place for every type of documentation you're looking for. That would make a very fragmented experience. And not only for readers of documentation but also for writers.
ExDoc Cheatsheet represents one step further in the direction of making documentation in Elixir an even more comprehensive and integrated experience.
It's also worth mentioning that ExDoc Cheatshees is inspired by [devhints.io](https://devhints.io) from [Rico Sta. Cruz](https://twitter.com/rstacruz), and it was a contribution from [Paulo Valim](https://twitter.com/paulovalim) and [Yordis Prieto](https://twitter.com/alchemist_ubi).
## 10 features that show how ExDoc has improved developer experience over time
We added Cheatsheets to ExDoc because we value developer experience and believe documentation is a core aspect of it.
Since the beginning, one of Elixir's principles is that documentation should be a first-class citizen. What this idea means to us is that documentation should be easy to write and easy to read. ExDoc has been continuously evolving over the years, guided by that idea.
We thought the release of Cheatsheets could be an excellent opportunity to remember how ExDoc has evolved.
Here are some of the features added to ExDoc over the years that make reading and writing documentation in Elixir a great experience.
### Beautiful and usable design
As developers, we may not have the skill to make beautifully designed UIs. That doesn't mean we don't appreciate it.
Here's what ExDoc-based documentation looked like almost ten years ago, with its original layout based on [YARD](https://yardoc.org/).

Here's what it looks like today:

The evolution of ExDoc's design helped ExDoc-based documentation be more visually appealing and easier to read and navigate.
### Links to source code
Sometimes you're reading the docs of a library, and you want to know more about the implementation of a function. Or you found something in the documentation that could be improved and wants to help.
In those situations, it's helpful to go from the documentation to the source code. ExDoc makes that dead easy.
For every module, function, or page, ExDoc gives you a link that you can click to go directly to the project's source code inside Github:

### Guides
One of the most common formats of library documentation is an API reference. But depending on your need, that's not the most approachable doc format. For example, when you're just getting started with a lib, or when you want to learn how to solve a specific problem using it.
That's why ExDoc allows writing other types of docs besides API references, like Getting Started Guides or How-tos.
Look at how [Ecto's documentation](https://hexdocs.pm/ecto/Ecto.html) uses that, for example:

### Custom grouping of modules, functions, and pages in the sidebar
Sometimes your library has dozens of modules. And sometimes, one given module has a large API surface area. In those situations showing the list of functions as a single large list may not be the most digestible way to be consumed.
For those situations, ExDoc allows modules, functions, or extra pages to be grouped in the sidebar in a way that makes more sense semantically.
Here's an example of how Ecto use grouped functions for its `Repo` module:

Instead of listing the ~40 functions of `Ecto.Repo` as a single extensive list, it presents them grouped by five cohesive topics:
- Query API
- Schema API
- Transaction API
- Runtime API
- User callbacks
The same functionality is available for modules and pages (guides, how-tos, etc). Phoenix is a [good example](https://hexdocs.pm/phoenix/overview.html) of how that's used.
### Full-text search
Sometimes you don't know or don't remember the name of the function that you're looking for. For example, let's say you're looking for a function for dealing with file system directories.
Although there's no function or module called "directory" in Elixir, when you type "directory" in [Elixir's documentation](https://hexdocs.pm/elixir/search.html?q=directory), it will return all the entries that have the word "directory" inside the documentation. It will even return entries with variations of the word "directory", like "directories", doing a fuzzy search.

The search bar also supports autocompletion for module and function names:

### Keyboard shortcut to navigate to docs of other Hex packages
It's usual for an application to have many dependencies. And while coding, we usually need to read the documentation of more than one of those dependencies.
One solution is to keep a window open for each package documentation we need. But ExDoc offers another one, a keyboard shortcut to search and go to another package documentation within the same window.
Here's what it looks like:

And there are more keyboard shortcuts to help you navigate within and between documentation:

### A version dropdown to switch to other versions
Keeping our application updated with the latest versions of all its dependencies can be challenging. So, it's common to need to look at the documentation of an older version of a library we're using. ExDoc makes it very simple to do that.
When you access the documentation of a project, there's a dropdown that you can use to select the version you're looking for:

### Erlang support
The [EEP 48](https://www.erlang.org/eeps/eep-0048) proposed a standardized way for how BEAM languages could store API documentation. That allowed any BEAM language to read documentation generated by each other.
By leveraging that work, ExDoc can generate docs for an Erlang project. For example, Telemetry is a library written in Erlang that has [its docs](https://hexdocs.pm/telemetry/readme.html) generated with ExDoc.

By using ExDoc to also generate docs for Erlang-based projects, we can have more consistency in the user experience along the BEAM ecosystem.
### Doctests
When writing a function's documentation, it's helpful to offer code examples of how that function works. For example, here's the documentation of the `Enum.any?/1` function from Elixir's standard library:
```elixir
@doc """
Returns `true` if at least one element in `enumerable` is truthy.
When an element has a truthy value (neither `false` nor `nil`) iteration stops
immediately and `true` is returned. In all other cases `false` is returned.
## Examples
iex> Enum.any?([false, false, false])
false
iex> Enum.any?([false, true, false])
true
iex> Enum.any?([])
false
"""
```
To ensure examples do not get out of date, Elixir's test framework (ExUnit) provides a feature called doctests that allows developers to test the examples in their documentation. Doctests work by parsing out code samples starting with iex> from the documentation.
Although this is not a feature of ExDoc, it helps with the documentation's maintainability, making it a better experience.
### Livebook integration
[Livebook](https://livebook.dev/) is a web application for writing interactive and collaborative code notebooks in Elixir.
One of the ways Elixir developers have been using Livebook is for documentation. Because of its interactivity capabilities, it enables the reader to play with the code right inside the documentation, which makes it great for tutorials and augmenting the user experience.
With that in mind, ExDoc offers the possibility of integrating Livebook notebooks. That means one can host Livebook-based documentation together with the API reference.
Here's an [example of using Livebook inside ExDoc for writing a Usage Guide](https://hexdocs.pm/req_sandbox/usage.html):

## Wrap up
As we can see, ExDoc has evolved a lot throughout the years!
As it continues to evolve into a more and more comprehensive documentation tool, we want to enable developers to keep investing more time writing the documentation itself instead of needing to spend time building custom documentation tools and websites.
The best part is that all you need to do to leverage many of those features is to simply document your code using the `@doc` attribute!
Here's to a continuously improving documentation experience for the next years.