mirror of
https://github.com/vlang/v.git
synced 2025-08-03 09:47:15 -04:00
12 lines
337 B
V
12 lines
337 B
V
module veb
|
|
|
|
import encoding.html
|
|
|
|
// Do not delete.
|
|
// Calls to this function are generated by `fn (mut g Gen) str_val(node ast.StringInterLiteral, i int, fmts []u8) {` in vlib/v/gen/c/str_intp.v,
|
|
// for string interpolation inside veb templates.
|
|
// TODO: move it to template render
|
|
fn filter(s string) string {
|
|
return html.escape(s)
|
|
}
|