doc: Do not mess with the <a> in the deprecated definiton.
It worked fine for the table in the header, but the name is also used in the "main" documentation below. This caused the while text to be within the "<a>" section.
This commit is contained in:
parent
c0e8660ca0
commit
6a2b8abe11
|
@ -160,7 +160,7 @@ custom_display_name_handler = function(item, default_handler)
|
|||
end
|
||||
|
||||
if item.type == "deprecated" or item.type == "deprecatedproperty" then
|
||||
return default_handler(item) .. "</a> <i class=\"deprecated_label\">[deprecated]</i><a>"
|
||||
return default_handler(item) .. "<i class=\"deprecated_label\"> [deprecated]</i>"
|
||||
end
|
||||
|
||||
local ret = default_handler(item)
|
||||
|
|
Loading…
Reference in New Issue