Small fixes
A selection of 80 fixes from 174 pull requests.
34.A percent sign in a reference
The definition Rate% exported as #/$defs/Rate%, an invalid URI escape. JSON Pointer escaping must be followed by URI-fragment escaping.
1234function formatReferenceToken(token: string): string { return encodeURI(escapeToken(token)).replace(/#/g, "%23")}