Artyom Pervukhin

Results 2 issues of Artyom Pervukhin

When fenced code block is matched inside quote block that's followed later by some non-quoted fenced code block, it is incorrectly parsed, matching end of fenced code block greedily. Try...

With the following benchmark: ```go var sink string func BenchmarkCreate(b *testing.B) { b.Run("Simple", func(b *testing.B) { const text = `Strings, bytes, runes and characters in Go` b.ReportAllocs() b.SetBytes(int64(len(text))) for i...