From 3174e2d4416ecd3a209cfe6608482222ab31cf53 Mon Sep 17 00:00:00 2001 From: Jendrik Seipp Date: Fri, 6 Oct 2023 22:30:47 +0200 Subject: [PATCH] Indent nested lists by four spaces to fix Markdown export. --- src/search/plugins/doc_printer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/search/plugins/doc_printer.cc b/src/search/plugins/doc_printer.cc index b926579d2..47a2e888a 100644 --- a/src/search/plugins/doc_printer.cc +++ b/src/search/plugins/doc_printer.cc @@ -133,7 +133,7 @@ void Txt2TagsPrinter::print_arguments(const Feature &feature) const { if (arg_type.is_enum_type()) { for (const pair &explanation : arg_type.get_documented_enum_values()) { - os << " - ``" << explanation.first << "``: " + os << " - ``" << explanation.first << "``: " << explanation.second << endl; } }