pongo2
pongo2 copied to clipboard
fix 'map[interface{}]interface{} sorted not work' bug
when value is interface{}, vi.String() return interface{} string, sorted not work
use fmt.Sprint(vi.Interface()) replace vi.String()
Can you please add some tests? Thanks.