The MEntity URL in the HTML output

You MUST redefine this method. Depending on your implementation, this URL can be a page URL or an anchor.

Property definitions

nitc :: html_model $ MEntity :: html_url=
	# The MEntity URL in the HTML output
	#
	# You MUST redefine this method.
	# Depending on your implementation, this URL can be a page URL or an anchor.
	var html_url: String is lazy do return html_id
src/doc/templates/html_model.nit:31,2--35,47

nitc :: static_html $ MEntity :: html_url=
	redef var html_url = "{html_id}.html" is lazy
src/doc/static/static_html.nit:373,2--46

nitc :: static_html $ MClass :: html_url=
	redef var html_url is lazy do return "class_{super}"
src/doc/static/static_html.nit:389,2--53

nitc :: static_html $ MClassDef :: html_url=
	redef var html_url is lazy do
		if is_intro then return mclass.html_url
		return "{mclass.html_url}?def=def_code_{html_id}#lin"
	end
src/doc/static/static_html.nit:393,2--396,4

nitc :: static_html $ MPackage :: html_url=
	redef var html_url is lazy do return "package_{super}"
src/doc/static/static_html.nit:377,2--55

nitc :: static_html $ MGroup :: html_url=
	redef var html_url is lazy do return "group_{super}"
src/doc/static/static_html.nit:381,2--53

nitc :: static_html $ MProperty :: html_url=
	redef var html_url is lazy do return "property_{super}"
src/doc/static/static_html.nit:400,2--56

nitc :: static_html $ MPropDef :: html_url=
	redef var html_url is lazy do
		if is_intro then return mproperty.html_url
		return "{mproperty.html_url}?def=def_code_{html_id}#lin"
	end
src/doc/static/static_html.nit:404,2--407,4

nitc :: static_html $ MModule :: html_url=
	redef var html_url is lazy do return "module_{super}"
src/doc/static/static_html.nit:385,2--54