mirror of
https://github.com/github/codeql.git
synced 2026-03-01 13:23:49 +01:00
27 lines
409 B
Plaintext
27 lines
409 B
Plaintext
<%=
|
|
|
|
simple_format(x, y, sanitize: true)
|
|
simple_format(x, y, sanitize: false)
|
|
|
|
truncate(x, escape: true)
|
|
truncate(x, escape: false)
|
|
|
|
highlight(x, sanitize: true)
|
|
highlight(x, sanitize: false)
|
|
|
|
javascript_tag(x)
|
|
|
|
content_tag(x, y, z, true)
|
|
content_tag(x, y, z, false)
|
|
|
|
tag(x, y, z, true)
|
|
tag(x, y, z, false)
|
|
|
|
tag.h1(x, escape: true)
|
|
tag.h1(x, escape: false)
|
|
|
|
tag.p(x, escape: true)
|
|
tag.p(x, escape: false)
|
|
|
|
%>
|