diff options
Diffstat (limited to 'lib/rdoc/generators/html_generator.rb')
-rw-r--r-- | lib/rdoc/generators/html_generator.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/rdoc/generators/html_generator.rb b/lib/rdoc/generators/html_generator.rb index 36e2f351da..89349f4b00 100644 --- a/lib/rdoc/generators/html_generator.rb +++ b/lib/rdoc/generators/html_generator.rb @@ -1227,6 +1227,9 @@ module Generators 'title' => CGI.escapeHTML(@options.title), 'charset' => @options.charset } + if @options.inline_source + values['inline_source'] = true + end template.write_html_on(f, values) end end |