aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rdoc/rd/block_parser.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rdoc/rd/block_parser.rb')
-rw-r--r--lib/rdoc/rd/block_parser.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/rdoc/rd/block_parser.rb b/lib/rdoc/rd/block_parser.rb
index 1e7d872508..dd15e1262e 100644
--- a/lib/rdoc/rd/block_parser.rb
+++ b/lib/rdoc/rd/block_parser.rb
@@ -394,11 +394,12 @@ end
# Adds footnote +content+ to the document
def add_footnote content
- index = @footnotes.length + 1
+ index = @footnotes.length / 2 + 1
footmark_link = "{^#{index}}[rdoc-label:footmark-#{index}:foottext-#{index}]"
- @footnotes << RDoc::Markup::Paragraph.new(footmark_link, *content)
+ @footnotes << RDoc::Markup::Paragraph.new(footmark_link, ' ', *content)
+ @footnotes << RDoc::Markup::BlankLine.new
index
end