Qore Programming Language Reference Manual
1.7.0
|
Variables | |
const | Qore::CE_ALL = CE_ALL |
code for encoding everything More... | |
const | Qore::CE_HTML = CE_HTML |
code for encoding HTML 5 symbols as named character references More... | |
const | Qore::CE_NONASCII = CE_NONASCII |
code for encoding all non-ASCII symbols as numeric character references More... | |
const | Qore::CE_XHTML = CE_XHTML |
code for encoding XHTML entities More... | |
const | Qore::CE_XML = CE_XML |
code for encoding XML entities More... | |
const Qore::CE_ALL = CE_ALL |
code for encoding everything
const Qore::CE_HTML = CE_HTML |
code for encoding HTML 5 symbols as named character references
encodes all HTML 5 symbols as named character references
const Qore::CE_NONASCII = CE_NONASCII |
code for encoding all non-ASCII symbols as numeric character references
using this code ensures that the resulting string has no non-ASCII characters
const Qore::CE_XHTML = CE_XHTML |
code for encoding XHTML entities
This code is a combination of Qore::CE_HTML and Qore::CE_XML
const Qore::CE_XML = CE_XML |
code for encoding XML entities
The following symbols are encoded:
'"'
: as """
"&"
: as "&"
"'"
: as "'"
"<"
: as "<"
">"
: as ">"
"'"
/ "'"
is the only character not included in Qore::CE_HTML