mrdocs::htmlEscapeEntities

Character‐to‐entity table used by HTMLEscape.

Synopsis

inline constexpr std::pair<char, std::string_view> const htmlEscapeEntities[7] = {
    {'&',  "&amp;"},
    {'<',  "&lt;"},
    {'>',  "&gt;"},
    {'"',  "&quot;"},
    {'\'', "&#x27;"},
    {'`',  "&#x60;"},
    {'=',  "&#x3D;"}
};

Created with MrDocs