Property definitions

markdown $ HeadLine :: defaultinit
# Class representing a markdown headline.
class HeadLine
	# Unique identifier of this headline.
	var id: String

	# Text of the headline.
	var title: String

	# Level of this headline.
	#
	# According toe the markdown specification, level must be in `[1..6]`.
	var level: Int
end
lib/markdown/markdown.nit:715,1--727,3