package lexer import ( "testing" ) func Test_Lexer(t *testing.T) { tt := []string{ "[[Regular Link]]", /* "![[Transcluded Link]]", "[[Regular Link|Alias]]", "[[Regular Link#Subsection of page]]", "[[Regular Link^link to block]]", "[[Regular Link#Subsection of page|Alias]]", "[[Regular Link^link to block|Alias]]", "[[Regular Link\|Alias]]", "[[Regular Link^link to block\|Alias]]", "[[Regular Link#Subsection of page\|Alias]]", */ } for _, tc := range tt { t.Run(tc, func(t *testing.T) { t.Fail() }) } }