nixos/manual: remove some newlines from deflists

markdown-it parses deflists slitghtly differently than pandoc does. in
these two cases pandoc would find a deflist item while markdown-it would
not, instead it'd find a lone colon and the rest of the text.
This commit is contained in:
pennae 2023-02-08 06:07:40 +01:00
parent 861ebec769
commit ba4bcdc5e4

View file

@ -417,8 +417,7 @@ with foo_running:
`seconds_interval`
:
specifies how often the condition should be polled:
: specifies how often the condition should be polled:
```py
@polling_condition(seconds_interval=10)
@ -428,8 +427,7 @@ def foo_running():
`description`
:
is used in the log when the condition is checked. If this is not provided, the description is pulled from the docstring of the function. These two are therefore equivalent:
: is used in the log when the condition is checked. If this is not provided, the description is pulled from the docstring of the function. These two are therefore equivalent:
```py
@polling_condition