From 0162436ab700417d2b3a47ffddf41cfa95eb8663 Mon Sep 17 00:00:00 2001 From: Tomas Pospisek Date: Sun, 7 Jul 2013 13:11:20 +0200 Subject: [PATCH] fix asciidoc misinterpretation asciidoc was misinterpreting the '-----' (see patch) as underlining the previous text instead of as starting the next source code section. Inserting a newline in between to help asciidoc. --- docs/man/man7/cdist-type.text | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/man/man7/cdist-type.text b/docs/man/man7/cdist-type.text index 71495797..7d941281 100644 --- a/docs/man/man7/cdist-type.text +++ b/docs/man/man7/cdist-type.text @@ -141,6 +141,7 @@ If you have not seen this syntax (<< eof) before, it may help you to read about "here documents". In the __file type, stdin is used as source for the file, if - is used for source: + -------------------------------------------------------------------------------- if [ -f "$__object/parameter/source" ]; then source="$(cat "$__object/parameter/source")"