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:
parent
861ebec769
commit
ba4bcdc5e4
1 changed files with 2 additions and 4 deletions
|
@ -417,8 +417,7 @@ with foo_running:
|
||||||
|
|
||||||
`seconds_interval`
|
`seconds_interval`
|
||||||
|
|
||||||
:
|
: specifies how often the condition should be polled:
|
||||||
specifies how often the condition should be polled:
|
|
||||||
|
|
||||||
```py
|
```py
|
||||||
@polling_condition(seconds_interval=10)
|
@polling_condition(seconds_interval=10)
|
||||||
|
@ -428,8 +427,7 @@ def foo_running():
|
||||||
|
|
||||||
`description`
|
`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
|
```py
|
||||||
@polling_condition
|
@polling_condition
|
||||||
|
|
Loading…
Reference in a new issue