@@ -193,6 +193,7 @@ ASCIIDOC_DOCBOOK = docbook5
override ASCIIDOC_EXTRA += -acompat-mode -atabsize=8
override ASCIIDOC_EXTRA += -I. -rasciidoctor-extensions
override ASCIIDOC_EXTRA += -alitdd='&\#x2d;&\#x2d;'
+override ASCIIDOC_EXTRA += -abaseurl='$(MAN_BASE_URL)'
ASCIIDOC_DEPS = asciidoctor-extensions.rb GIT-ASCIIDOCFLAGS
DBLATEX_COMMON =
XMLTO_EXTRA += --skip-validation
@@ -17,7 +17,9 @@ module Asciidoctor
footnote = doc.footnotes.find { |e| e.id == node.target }
if !footnote
- footnote_text = "%s\n\e.RS\n\e\\%%%s\n\e.RE" % [node.text, node.target]
+ target = node.target
+ target = doc.attributes['baseurl'] + target unless target.include? ':'
+ footnote_text = "%s\n\e.RS\n\e\\%%%s\n\e.RE" % [node.text, target]
index = doc.counter('footnote-number')
footnote = Document::Footnote.new(index, node.target, footnote_text)
doc.register(:footnotes, footnote)
So that we can present relative links correctly. Reduces the doc-diff: NOTES - 1. “Understanding history: What is a branch?” - file:///$HOME/share/doc/git-doc/user-manual.html#what-is-a-branch + [1] “Understanding history: What is a branch?” + user-manual.html#what-is-a-branch NOTES - 1. “Understanding history: What is a branch?” + [1] “Understanding history: What is a branch?” file:///$HOME/share/doc/git-doc/user-manual.html#what-is-a-branch Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> --- Documentation/Makefile | 1 + Documentation/asciidoctor-extensions.rb | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-)