@@ -132,14 +132,17 @@ defmodule Mix.Tasks.Docs do
132132
133133 * `:formatters` - Formatter to use; default: ["html", "epub"], options: "html", "epub".
134134
135+ * `:footer` - When false, does not render the footer on all pages, except for
136+ the required "Built with ExDoc" note.
137+
135138 * `:groups_for_extras`, `:groups_for_modules`, `:groups_for_docs`, and `:default_group_for_doc` -
136- See the "Groups" section
139+ See the "Groups" section.
137140
138141 * `:ignore_apps` - Apps to be ignored when generating documentation in an umbrella project.
139142 Receives a list of atoms. Example: `[:first_app, :second_app]`.
140143
141144 * `:language` - Identify the primary language of the documents, its value must be
142- a valid [BCP 47](https://tools.ietf.org/html/bcp47) language tag; default : "en"
145+ a valid [BCP 47](https://tools.ietf.org/html/bcp47) language tag. Default : "en".
143146
144147 * `:logo` - Path to a logo image file for the project. Must be PNG, JPEG or SVG. When
145148 specified, the image file will be placed in the output "assets" directory, named
@@ -148,23 +151,23 @@ defmodule Mix.Tasks.Docs do
148151 predictable sizing and cropping.
149152
150153 * `:main` - Main page of the documentation. It may be a module or a
151- generated page, like "Plug" or "api-reference"; default : "api-reference".
154+ generated page, like "Plug" or "api-reference". Default : "api-reference".
152155
153156 * `:markdown_processor` - The markdown processor to use,
154- either `module()` or `{module(), keyword()}` to provide configuration options;
157+ either `module()` or `{module(), keyword()}` to provide configuration options.
155158
156- * `:meta` - A keyword list or a map to specify meta tag attributes
159+ * `:meta` - A keyword list or a map to specify meta tag attributes.
157160
158- * `:nest_modules_by_prefix` - See the "Nesting" section
161+ * `:nest_modules_by_prefix` - See the "Nesting" section.
159162
160- * `:output` - Output directory for the generated docs; default : "doc".
163+ * `:output` - Output directory for the generated docs. Default : "doc".
161164 May be overridden by command line argument.
162165
163166 * `:redirects` - A map or list of tuples, where the key is the path to redirect from and the
164167 value is the path to redirect to. The extension is omitted in both cases, i.e `%{"old-readme" => "readme"}`.
165168 See the "Changing documentation over time" section below for more.
166169
167- * `:search` - A list of search engine configurations. See the "Search engines" section
170+ * `:search` - A list of search engine configurations. See the "Search engines" section.
168171
169172 * `:skip_undefined_reference_warnings_on` - ExDoc warns when it can't create a `Mod.fun/arity`
170173 reference in the current project docs (for example, because of a typo). This option controls when to
@@ -190,8 +193,8 @@ defmodule Mix.Tasks.Docs do
190193 * `:source_url` - The source URL fallback if `:source_url` is not given at the project
191194 configuration. See the following sections.
192195
193- * `:source_ref` - The branch/commit/tag used for source link inference;
194- default : "main".
196+ * `:source_ref` - The branch/commit/tag used for source link inference.
197+ Default : "main".
195198
196199 * `:source_url_pattern` - Public URL of the project for source links. This is derived
197200 automatically from the project's `:source_url` and `:source_ref` when using one of
0 commit comments