// Copyright 2024 The Gitea Authors. All rights reserved. // SPDX-License-Identifier: MIT package htmlutil import ( "html/template" "testing" "github.com/stretchr/testify/assert" ) func TestHTMLFormat(t *testing.T) { assert.Equal(t, template.HTML("<a>< < 1</a>"), HTMLFormat("<a>%s %s %d</a>", "<", template.HTML("<"), 1)) }