From ba4bcdc5e4999c5657063399f76dedf5c84fa56e Mon Sep 17 00:00:00 2001 From: pennae Date: Wed, 8 Feb 2023 06:07:40 +0100 Subject: [PATCH] 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. --- nixos/doc/manual/development/writing-nixos-tests.section.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/nixos/doc/manual/development/writing-nixos-tests.section.md b/nixos/doc/manual/development/writing-nixos-tests.section.md index 5bcdf6e58eb1..d80e314e6251 100644 --- a/nixos/doc/manual/development/writing-nixos-tests.section.md +++ b/nixos/doc/manual/development/writing-nixos-tests.section.md @@ -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