mrdocs::htmlEscapeEntities
Character‐to‐entity table used by HTMLEscape.
Synopsis
Declared in <mrdocs/Support/Handlebars.hpp>
inline constexpr std::pair<char, std::string_view> const htmlEscapeEntities[7] = {
{'&', "&;"},
{'<', "<;"},
{'>', ">;"},
{'"', "";"},
{'\'', "&#x27;"},
{'`', "&#x60;"},
{'=', "&#x3D;"}
};
Created with MrDocs