From 8a4090f7497df08dc0844453959cfc292f039303 Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Mon, 20 Dec 2021 13:18:04 -0600 Subject: [PATCH] Do not format the choice as a definition list for non-mapping values (#76568) --- docs/templates/config.rst.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/templates/config.rst.j2 b/docs/templates/config.rst.j2 index 8d7c51489f2..961e6ec4acb 100644 --- a/docs/templates/config.rst.j2 +++ b/docs/templates/config.rst.j2 @@ -122,7 +122,7 @@ you can use the command line utility mentioned above (`ansible-config`) to brows {% endfor %} {% else %} {% for key in config['choices'] %} - - :{{key}}: + - {{key}} {% endfor %} {% endif %} {% endif %}