HTML
func handler(ctx iris.Context) {
response := "Hello, <strong>%s!</strong>"
ctx.HTML(response, "World")
}Hello, <strong>World!</strong>Last updated
Was this helpful?
func handler(ctx iris.Context) {
response := "Hello, <strong>%s!</strong>"
ctx.HTML(response, "World")
}Hello, <strong>World!</strong>Last updated
Was this helpful?
Was this helpful?