Ignored tests

We ignore some tests for two reasons:

  • because nitmd does not fully support UTF-8
  • because somes tests are wrong

Property definitions

markdown2 $ TestGenerator :: ignored_tests=
	# Ignored tests
	#
	# We ignore some tests for two reasons:
	# * because `nitmd` does not fully support UTF-8
	# * because somes tests are wrong
	var ignored_tests: Array[Int] do
		var ignored = new Array[Int]
		ignored.add_all([171, 304, 305, 306, 311, 312, 313, 477, 514]) # utf-8 tests
		ignored.add_all([275, 276]) # spec is wrong compared to reference implementation
		return ignored
	end
lib/markdown2/tests/commonmark_gen.nit:39,2--49,4