You should redefine this method depending on the organization or your output.
# Link to the MEntity in the HTML output
#
# You should redefine this method depending on the organization or your
# output.
fun html_link(text, title: nullable String): Link do
if text == null then
text = html_name
end
var mdoc = self.mdoc_or_fallback
if title == null and mdoc != null then
title = mdoc.synopsis
end
return new Link(html_url, text, title)
end
src/doc/templates/html_model.nit:43,2--56,4
redef fun html_link(text, title) do return mvirtualtype.html_link(text, title)
src/doc/templates/html_model.nit:261,2--79