14 lines
203 B
Go
Raw Normal View History

2024-03-31 21:08:01 +00:00
package markdown_test
import (
"testing"
"git.akyoto.dev/go/markdown"
)
func BenchmarkSmall(b *testing.B) {
for range b.N {
markdown.Render("# Header\nText.\nText.\n# Header\nText.\nText.")
}
}