Skip to content

Commit 8e13a89

Browse files
committed
Add a temporary way to disable warnings on unsupported <see*> links
1 parent d28641c commit 8e13a89

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lib/ex_doc/language/erlang.ex

+5-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,11 @@ defmodule ExDoc.Language.Erlang do
262262
end
263263

264264
"https://erlang.org/doc/link/" <> see ->
265-
warn_ref(attrs[:href] <> " (#{see})", config)
265+
# TODO: remove me before release
266+
unless System.get_env("SKIP_SEE_WARNING") do
267+
warn_ref(attrs[:href] <> " (#{see})", config)
268+
end
269+
266270
inner
267271

268272
_ ->

0 commit comments

Comments
 (0)