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:
Emmanuel Lepage Vallee 2019-06-06 01:21:35 -04:00
parent c0e8660ca0
commit 6a2b8abe11
1 changed files with 1 additions and 1 deletions

View File

@ -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)