2
0
mirror of https://github.com/boostorg/parser.git synced 2026-01-19 04:22:13 +00:00

Add a small section to the end of the Unidoce Support page indicating that

Parser is normalization-agnostic.
This commit is contained in:
Zach Laine
2024-02-29 01:08:34 -06:00
parent 9b47f3c551
commit 0a945decb6

View File

@@ -2961,6 +2961,13 @@ character type.
`parser.hpp`. To get access to them, `#include
<boost/parser/transcode_view.hpp>`. ]
[heading (Lack of) normalization]
One thing that _Parser_ does not handle for you is normalization; _Parser_ is
completely normalization-agnostic. Since all the parsers do their matching
using equality comparisons of code points, you should make sure that your
parsed range and your parsers all use the same normalization form.
[endsect]
[section Callback Parsing]