markdown :: TokenLink :: defaultinit
# A markdown link token.
class TokenLink
super TokenLinkOrImage
redef fun emit_hyper(v) do
if is_abbrev and comment != null then
v.decorator.add_abbr(v, name.as(not null), comment.as(not null))
else
v.decorator.add_link(v, link.as(not null), name.as(not null), comment)
end
end
end
lib/markdown/markdown.nit:2190,1--2201,3