Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use backticks consistently in mix docs docs #1783

Merged
merged 2 commits into from
Sep 25, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions lib/mix/tasks/docs.ex
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ defmodule Mix.Tasks.Docs do
## Command line options
* `--canonical`, `-n` - Indicate the preferred URL with
rel="canonical" link element, defaults to no canonical path
`rel="canonical"` link element, defaults to no canonical path
* `--formatter`, `-f` - Which formatters to use, "html" or
"epub". This option can be given more than once. By default,
both html and epub are generated.
* `--formatter`, `-f` - Which formatters to use, `"html"` or
`"epub"`. This option can be given more than once. By default,
both `html` and `epub` are generated.
wojtekmach marked this conversation as resolved.
Show resolved Hide resolved
* `--language` - Specifies the language to annotate the
EPUB output in valid [BCP 47](https://tools.ietf.org/html/bcp47)
Expand All @@ -24,8 +24,8 @@ defmodule Mix.Tasks.Docs do
* `--output`, `-o` - Output directory for the generated
docs, default: `"doc"`
* `--proglang` - Chooses the main programming language: "elixir"
or "erlang"
* `--proglang` - Chooses the main programming language: `"elixir"`
or `"erlang"`
wojtekmach marked this conversation as resolved.
Show resolved Hide resolved
The command line options have higher precedence than the options
specified in your `mix.exs` file below.
Expand Down