Skip to content

Commit aeb7529

Browse files
committed
Add :autolink: directive to suppress auto linking
1 parent dcde9a1 commit aeb7529

File tree

4 files changed

+37
-4
lines changed

4 files changed

+37
-4
lines changed

lib/rdoc/code_object.rb

+9
Original file line numberDiff line numberDiff line change
@@ -424,4 +424,13 @@ def suppressed?
424424
@suppressed
425425
end
426426

427+
##
428+
# Autolink in cross reference?
429+
430+
def autolink?
431+
RDoc::Options.boolean(@metadata.fetch("autolink", true), "autolink")
432+
end
433+
434+
# Process <tt>:autolink:</tt> directive and empty it.
435+
RDoc::Markup::PreProcess.register("autolink") {|directive, param| ""}
427436
end

lib/rdoc/markup/to_html_crossref.rb

+5-4
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def init_link_notation_regexp_handlings
5858
# Creates a link to the reference +name+ if the name exists. If +text+ is
5959
# given it is used as the link text, otherwise +name+ is used.
6060

61-
def cross_reference name, text = nil, code = true, rdoc_ref: false
61+
def cross_reference name, text = nil, code = true, rdoc_ref: false, autolink: true
6262
lookup = name
6363

6464
name = name[1..-1] unless @show_hash if name[0, 1] == '#'
@@ -70,7 +70,7 @@ def cross_reference name, text = nil, code = true, rdoc_ref: false
7070
text ||= name
7171
end
7272

73-
link lookup, text, code, rdoc_ref: rdoc_ref
73+
link lookup, text, code, rdoc_ref: rdoc_ref, autolink: autolink
7474
end
7575

7676
##
@@ -94,7 +94,7 @@ def handle_regexp_CROSSREF(target)
9494
return name if name =~ /\A[a-z]*\z/
9595
end
9696

97-
cross_reference name, rdoc_ref: false
97+
cross_reference name, rdoc_ref: false, autolink: false
9898
end
9999

100100
##
@@ -147,7 +147,7 @@ def gen_url url, text
147147
##
148148
# Creates an HTML link to +name+ with the given +text+.
149149

150-
def link name, text, code = true, rdoc_ref: false
150+
def link name, text, code = true, rdoc_ref: false, autolink: true
151151
if !(name.end_with?('+@', '-@')) and name =~ /(.*[^#:])?@/
152152
name = $1
153153
label = $'
@@ -165,6 +165,7 @@ def link name, text, code = true, rdoc_ref: false
165165
path = ref ? ref.as_href(@from_path) : +""
166166

167167
if code and RDoc::CodeObject === ref and !(RDoc::TopLevel === ref)
168+
return text unless autolink or ref.autolink?
168169
text = "<code>#{CGI.escapeHTML text}</code>"
169170
end
170171

test/rdoc/test_rdoc_code_object.rb

+9
Original file line numberDiff line numberDiff line change
@@ -437,4 +437,13 @@ def test_suppress_eh
437437
assert @co.suppressed?
438438
end
439439

440+
def test_autolink
441+
assert_predicate @c1, :autolink?, "default is true"
442+
443+
@c1.metadata["autolink"] = "false"
444+
assert_not_predicate @c1, :autolink?
445+
446+
@c1.metadata["autolink"] = "true"
447+
assert_predicate @c1, :autolink?
448+
end
440449
end

test/rdoc/test_rdoc_markup_to_html_crossref.rb

+14
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,20 @@ def test_convert_CROSSREF_ignored_excluded_words
4747
assert_equal para("<a href=\"C1.html\">Constant</a>"), result
4848
end
4949

50+
def test_convert_CROSSREF_no_autolink
51+
@c1.metadata["autolink"] = "false"
52+
53+
result = @to.convert 'C1'
54+
assert_equal para("C1"), result
55+
56+
result = @to.convert '+C1+'
57+
assert_equal para("<a href=\"C1.html\"><code>C1</code></a>"), result
58+
59+
# Explicit linking with rdoc-ref is not ignored
60+
result = @to.convert 'Constant[rdoc-ref:C1]'
61+
assert_equal para("<a href=\"C1.html\">Constant</a>"), result
62+
end
63+
5064
def test_convert_CROSSREF_method
5165
result = @to.convert 'C1#m(foo, bar, baz)'
5266

0 commit comments

Comments
 (0)