summaryrefslogtreecommitdiffstats
path: root/lib/puppet/parser
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2009-01-22 10:39:49 +1100
committerJames Turnbull <james@lovedthanlost.net>2009-01-22 10:39:49 +1100
commitfb8f8cd14f2a4958505f27910ad1d2a368bb0967 (patch)
treebdc3e121dfccc94d98a2300b682ccbcb651d1be5 /lib/puppet/parser
parent69432d6f1dda6a59a015bcd30a729524e3655fd3 (diff)
downloadpuppet-fb8f8cd14f2a4958505f27910ad1d2a368bb0967.tar.gz
puppet-fb8f8cd14f2a4958505f27910ad1d2a368bb0967.tar.xz
puppet-fb8f8cd14f2a4958505f27910ad1d2a368bb0967.zip
In order for ReST formatting to work properly, newlines and
indentation of doc strings must be retained. Signed-off-by: Thomas Bellman <bellman@nsc.liu.se>
Diffstat (limited to 'lib/puppet/parser')
-rw-r--r--lib/puppet/parser/functions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/parser/functions.rb b/lib/puppet/parser/functions.rb
index b1cd0d083..b9e49131c 100644
--- a/lib/puppet/parser/functions.rb
+++ b/lib/puppet/parser/functions.rb
@@ -92,7 +92,7 @@ module Functions
#ret += "%s\n%s\n" % [name, hash[:type]]
ret += "%s\n%s\n" % [name, "-" * name.to_s.length]
if hash[:doc]
- ret += hash[:doc].gsub(/\n\s*/, ' ')
+ ret += Puppet::Util::Docs.scrub(hash[:doc])
else
ret += "Undocumented.\n"
end