# A link or image
abstract class MdLinkOrImage
super MdNode
# Link destination
var destination: String is writable
# Link title
var title: nullable String is writable
# Is the `destination` between pointy brackets `<dest>`
var has_brackets = false is writable
redef fun to_s_attrs do return "{super}, destination={destination}, title={title or else "null"}"
end
lib/markdown2/markdown_ast.nit:432,1--446,3