The path to self README.md

Property definitions

nitc $ MPackage :: readme_path
	# The path to `self` README.md
	fun readme_path: nullable String do
		var path = package_path
		if path == null then return null
		if not is_expanded then return null
		return path / "README.md"
	end
src/model/mpackage.nit:99,2--105,4