nuclei: 3.3.5 -> 3.3.6 (#358083)
[NixPkgs.git] / doc / README.md
blobeb664ce590598cb72f7075398093ee64d1049243
1 # Contributing to the Nixpkgs reference manual
3 This directory houses the sources files for the Nixpkgs reference manual.
5 > [!IMPORTANT]
6 > We are actively restructuring our documentation to follow the [Diátaxis framework](https://diataxis.fr/)
8 > Going forward, this directory should **only** contain [reference documentation](https://nix.dev/contributing/documentation/diataxis#reference).
9 > For tutorials, guides and explanations, contribute to <https://nix.dev/> instead.
11 > We are actively working to generate **all** reference documentation from the [doc-comments](https://github.com/NixOS/rfcs/blob/master/rfcs/0145-doc-strings.md) present in code.
12 > This also provides the benefit of using `:doc` in the `nix repl` to view reference documentation locally on the fly.
14 For documentation only relevant for contributors, use Markdown files next to the source and regular code comments.
16 > [!TIP]
17 > Feedback for improving support for parsing and rendering doc-comments is highly appreciated.
18 > [Open an issue](https://github.com/NixOS/nixpkgs/issues/new?labels=6.topic%3A+documentation&title=Doc%3A+) to request bugfixes or new features.
20 Rendered documentation:
21 - [Unstable (from master)](https://nixos.org/manual/nixpkgs/unstable/)
22 - [Stable (from latest release)](https://nixos.org/manual/nixpkgs/stable/)
24 The rendering tool is [nixos-render-docs](../pkgs/by-name/ni/nixos-render-docs), sometimes abbreviated `nrd`.
26 ## Contributing to this documentation
28 You can quickly check your edits with `nix-build`:
30 ```ShellSession
31 $ cd /path/to/nixpkgs
32 $ nix-build doc
33 ```
35 If the build succeeds, the manual will be in `./result/share/doc/nixpkgs/manual.html`.
37 ### devmode
39 The shell in the manual source directory makes available a command, `devmode`.
40 It is a daemon, that:
41 1. watches the manual's source for changes and when they occur — rebuilds
42 2. HTTP serves the manual, injecting a script that triggers reload on changes
43 3. opens the manual in the default browser
45 ### Testing redirects
47 Once you have a successful build, you can open the relevant HTML (path mentioned above) in a browser along with the anchor, and observe the redirection.
49 Note that if you already loaded the page and *then* input the anchor, you will need to perform a reload. This is because browsers do not re-run client JS code when only the anchor has changed.
51 ## Syntax
53 As per [RFC 0072](https://github.com/NixOS/rfcs/pull/72), all new documentation content should be written in [CommonMark](https://commonmark.org/) Markdown dialect.
55 Additional syntax extensions are available, all of which can be used in NixOS option documentation. The following extensions are currently used:
57 #### Tables
59 Tables, using the [GitHub-flavored Markdown syntax](https://github.github.com/gfm/#tables-extension-).
61 #### Anchors
63 Explicitly defined **anchors** on headings, to allow linking to sections. These should be always used, to ensure the anchors can be linked even when the heading text changes, and to prevent conflicts between [automatically assigned identifiers](https://github.com/jgm/commonmark-hs/blob/master/commonmark-extensions/test/auto_identifiers.md).
65 It uses the widely compatible [header attributes](https://github.com/jgm/commonmark-hs/blob/master/commonmark-extensions/test/attributes.md) syntax:
67 ```markdown
68 ## Syntax {#sec-contributing-markup}
69 ```
71 > [!Note]
72 > NixOS option documentation does not support headings in general.
74 #### Inline Anchors
76 Allow linking arbitrary place in the text (e.g. individual list items, sentences…).
78 They are defined using a hybrid of the link syntax with the attributes syntax known from headings, called [bracketed spans](https://github.com/jgm/commonmark-hs/blob/master/commonmark-extensions/test/bracketed_spans.md):
80 ```markdown
81 - []{#ssec-gnome-hooks-glib} `glib` setup hook will populate `GSETTINGS_SCHEMAS_PATH` and then `wrapGApps*` hook will prepend it to `XDG_DATA_DIRS`.
82 ```
84 #### Automatic links
86 If you **omit a link text** for a link pointing to a section, the text will be substituted automatically. For example `[](#chap-contributing)`.
88 This syntax is taken from [MyST](https://myst-parser.readthedocs.io/en/latest/using/syntax.html#targets-and-cross-referencing).
91 #### HTML
93 Inlining HTML is not allowed. Parts of the documentation gets rendered to various non-HTML formats, such as man pages in the case of NixOS manual.
95 #### Roles
97 If you want to link to a man page, you can use `` {manpage}`nix.conf(5)` ``. The references will turn into links when a mapping exists in [`doc/manpage-urls.json`](./manpage-urls.json).
99 A few markups for other kinds of literals are also available:
101 - `` {command}`rm -rfi` ``
102 - `` {env}`XDG_DATA_DIRS` ``
103 - `` {file}`/etc/passwd` ``
104 - `` {option}`networking.useDHCP` ``
105 - `` {var}`/etc/passwd` ``
107 These literal kinds are used mostly in NixOS option documentation.
109 This syntax is taken from [MyST](https://myst-parser.readthedocs.io/en/latest/syntax/syntax.html#roles-an-in-line-extension-point). Though, the feature originates from [reStructuredText](https://www.sphinx-doc.org/en/master/usage/restructuredtext/roles.html#role-manpage) with slightly different syntax.
111 #### Admonitions
113 Set off from the text to bring attention to something.
115 It uses pandoc’s [fenced `div`s syntax](https://github.com/jgm/commonmark-hs/blob/master/commonmark-extensions/test/fenced_divs.md):
117 ```markdown
118 ::: {.warning}
119 This is a warning
123 The following are supported:
125 - `caution`
126 - `important`
127 - `note`
128 - `tip`
129 - `warning`
130 - `example`
132 Example admonitions require a title to work.
133 If you don't provide one, the manual won't be built.
135 ```markdown
136 ::: {.example #ex-showing-an-example}
138 # Title for this example
140 Text for the example.
144 #### [Definition lists](https://github.com/jgm/commonmark-hs/blob/master/commonmark-extensions/test/definition_lists.md)
146 For defining a group of terms:
148 ```markdown
149 pear
150 :   green or yellow bulbous fruit
152 watermelon
153 :   green fruit with red flesh
156 ## Commit conventions
158 - Make sure you read about the [commit conventions](../CONTRIBUTING.md#commit-conventions) common to Nixpkgs as a whole.
160 - If creating a commit purely for documentation changes, format the commit message in the following way:
162   ```
163   doc: (documentation summary)
165   (Motivation for change, relevant links, additional information.)
166   ```
168   Examples:
170   * doc: update the kernel config documentation to use `nix-shell`
171   * doc: add information about `nix-update-script`
173     Closes #216321.
175 - If the commit contains more than just documentation changes, follow the commit message format relevant for the rest of the changes.
177 ## Documentation conventions
179 In an effort to keep the Nixpkgs manual in a consistent style, please follow the conventions below, unless they prevent you from properly documenting something.
180 In that case, please open an issue about the particular documentation convention and tag it with a "needs: documentation" label.
181 When needed, each convention explain why it exists, so you can make a decision whether to follow it or not based on your particular case.
182 Note that these conventions are about the **structure** of the manual (and its source files), not about the content that goes in it.
183 You, as the writer of documentation, are still in charge of its content.
185 ### One sentence per line
187 Put each sentence in its own line.
188 This makes reviews and suggestions much easier, since GitHub's review system is based on lines.
189 It also helps identifying long sentences at a glance.
191 ### Callouts and examples
193 Use the [admonition syntax](#admonitions) for callouts and examples.
195 ### Provide self-contained examples
197 Provide at least one example per function, and make examples self-contained.
198 This is easier to understand for beginners.
199 It also helps with testing that it actually works – especially once we introduce automation.
201 Example code should be such that it can be passed to `pkgs.callPackage`.
202 Instead of something like:
204 ```nix
205 pkgs.dockerTools.buildLayeredImage {
206   name = "hello";
207   contents = [ pkgs.hello ];
211 Write something like:
213 ```nix
214 { dockerTools, hello }:
215 dockerTools.buildLayeredImage {
216   name = "hello";
217   contents = [ hello ];
221 ### REPLs
223 When showing inputs/outputs of any [REPL](https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop), such as a shell or the Nix REPL, use a format as you'd see in the REPL, while trying to visually separate inputs from outputs.
224 This means that for a shell, you should use a format like the following:
225 ```shell
226 $ nix-build -A hello '<nixpkgs>' \
227   --option require-sigs false \
228   --option trusted-substituters file:///tmp/hello-cache \
229   --option substituters file:///tmp/hello-cache
230 /nix/store/zhl06z4lrfrkw5rp0hnjjfrgsclzvxpm-hello-2.12.1
232 Note how the input is preceded by `$` on the first line and indented on subsequent lines, and how the output is provided as you'd see on the shell.
234 For the Nix REPL, you should use a format like the following:
235 ```shell
236 nix-repl> builtins.attrNames { a = 1; b = 2; }
237 [ "a" "b" ]
239 Note how the input is preceded by `nix-repl>` and the output is provided as you'd see on the Nix REPL.
241 ### Headings for inputs, outputs and examples
243 When documenting functions or anything that has inputs/outputs and example usage, use nested headings to clearly separate inputs, outputs, and examples.
244 Keep examples as the last nested heading, and link to the examples wherever applicable in the documentation.
246 The purpose of this convention is to provide a familiar structure for navigating the manual, so any reader can expect to find content related to inputs in an "inputs" heading, examples in an "examples" heading, and so on.
247 An example:
249 ## buildImage
251 Some explanation about the function here.
252 Describe a particular scenario, and point to [](#ex-dockerTools-buildImage), which is an example demonstrating it.
254 ### Inputs
256 Documentation for the inputs of `buildImage`.
257 Perhaps even point to [](#ex-dockerTools-buildImage) again when talking about something specifically linked to it.
259 ### Passthru outputs
261 Documentation for any passthru outputs of `buildImage`.
263 ### Examples
265 Note that this is the last nested heading in the `buildImage` section.
267 :::{.example #ex-dockerTools-buildImage}
269 # Using `buildImage`
271 Example of how to use `buildImage` goes here.
276 ### Function arguments
278 Use [definition lists](#definition-lists) to document function arguments, and the attributes of such arguments as well as their [types](https://nixos.org/manual/nix/stable/language/values).
279 For example:
281 ```markdown
282 # pkgs.coolFunction {#pkgs.coolFunction}
284 `pkgs.coolFunction` *`name`* *`config`*
286 Description of what `callPackage` does.
289 ## Inputs {#pkgs-coolFunction-inputs}
291 If something's special about `coolFunction`'s general argument handling, you can say so here.
292 Otherwise, just describe the single argument or start the arguments' definition list without introduction.
294 *`name`* (String)
296 : The name of the resulting image.
298 *`config`* (Attribute set)
300 : Introduce the parameter. Maybe you have a test to make sure `{ }` is a sensible default; then you can say: these attributes are optional; `{ }` is a valid argument.
302   `outputHash` (String; _optional_)
304   : A brief explanation including when and when not to pass this attribute.
306   : _Default:_ the output path's hash.
309 Checklist:
310 - Start with a synopsis, to show the order of positional arguments.
311 - Metavariables are in emphasized code spans: ``` *`arg1`* ```. Metavariables are placeholders where users may write arbitrary expressions. This includes positional arguments.
312 - Attribute names are regular code spans: ``` `attr1` ```. These identifiers can _not_ be picked freely by users, so they are _not_ metavariables.
313 - _optional_ attributes have a _`Default:`_ if it's easily described as a value.
314 - _optional_ attributes have a _`Default behavior:`_ if it's not easily described using a value.
315 - Nix types aren't in code spans, because they are not code
316 - Nix types are capitalized, to distinguish them from the camelCase Module System types, which _are_ code and behave like functions.
318 #### Examples
320 To define a referenceable figure use the following fencing:
322 ```markdown
323 :::{.example #an-attribute-set-example}
324 # An attribute set example
326 You can add text before
328     ```nix
329     { a = 1; b = 2;}
330     ```
332 and after code fencing
336 Defining examples through the `example` fencing class adds them to a "List of Examples" section after the Table of Contents.
337 Though this is not shown in the rendered documentation on nixos.org.
339 #### Figures
341 To define a referenceable figure use the following fencing:
343 ```markdown
344 ::: {.figure #nixos-logo}
345 # NixOS Logo
346 ![NixOS logo](./nixos_logo.png)
350 Defining figures through the `figure` fencing class adds them to a `List  of Figures` after the `Table of Contents`.
351 Though this is not shown in the rendered documentation on nixos.org.
353 #### Footnotes
355 To add a foonote explanation, use the following syntax:
357 ```markdown
358 Sometimes it's better to add context [^context] in a footnote.
360 [^context]: This explanation will be rendered at the end of the chapter.
363 #### Inline comments
365 Inline comments are supported with following syntax:
367 ```markdown
368 <!-- This is an inline comment -->
371 The comments will not be rendered in the rendered HTML.
373 #### Link reference definitions
375 Links can reference a label, for example, to make the link target reusable:
377 ```markdown
378 ::: {.note}
379 Reference links can also be used to [shorten URLs][url-id] and keep the markdown readable.
382 [url-id]: https://github.com/NixOS/nixpkgs/blob/19d4f7dc485f74109bd66ef74231285ff797a823/doc/README.md
385 This syntax is taken from [CommonMark](https://spec.commonmark.org/0.30/#link-reference-definitions).
387 #### Typographic replacements
389 Typographic replacements are enabled. Check the [list of possible replacement patterns check](https://github.com/executablebooks/markdown-it-py/blob/3613e8016ecafe21709471ee0032a90a4157c2d1/markdown_it/rules_core/replacements.py#L1-L15).
391 ## Getting help
393 If you need documentation-specific help or reviews, ping [@NixOS/documentation-team](https://github.com/orgs/nixos/teams/documentation-team) on your pull request.