forked from forgejo/forgejo
Switch Unicode Escaping to a VSCode-like system (#19990)
This PR rewrites the invisible unicode detection algorithm to more closely match that of the Monaco editor on the system. It provides a technique for detecting ambiguous characters and relaxes the detection of combining marks. Control characters are in addition detected as invisible in this implementation whereas they are not on monaco but this is related to font issues. Close #19913 Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
parent
11dc6df5be
commit
99efa02edf
29 changed files with 2107 additions and 371 deletions
|
@ -1035,13 +1035,13 @@ file_view_rendered = View Rendered
|
|||
file_view_raw = View Raw
|
||||
file_permalink = Permalink
|
||||
file_too_large = The file is too large to be shown.
|
||||
bidi_bad_header = `This file contains unexpected Bidirectional Unicode characters!`
|
||||
bidi_bad_description = `This file contains unexpected Bidirectional Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.`
|
||||
bidi_bad_description_escaped = `This file contains unexpected Bidirectional Unicode characters. Hidden unicode characters are escaped below. Use the Unescape button to show how they render.`
|
||||
unicode_header = `This file contains hidden Unicode characters!`
|
||||
unicode_description = `This file contains hidden Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.`
|
||||
unicode_description_escaped = `This file contains hidden Unicode characters. Hidden unicode characters are escaped below. Use the Unescape button to show how they render.`
|
||||
line_unicode = `This line has hidden unicode characters`
|
||||
invisible_runes_header = `This file contains invisible Unicode characters!`
|
||||
invisible_runes_description = `This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.`
|
||||
ambiguous_runes_header = `This file contains ambiguous Unicode characters!`
|
||||
ambiguous_runes_description = `This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.`
|
||||
invisible_runes_line = `This line has invisible unicode characters`
|
||||
ambiguous_runes_line = `This line has ambiguous unicode characters`
|
||||
ambiguous_character = `%[1]c [U+%04[1]X] is confusable with %[2]c [U+%04[2]X]`
|
||||
|
||||
escape_control_characters = Escape
|
||||
unescape_control_characters = Unescape
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue