Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions unicodetools/data/linkification/dev/LinkFormattingTest.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# LinkFormattingTest.txt
# Date: 2026-05-20, 15:27:01 GMT
# Date: 2026-05-20, 21:41:06 GMT
# © 2026 Unicode®, Inc.
# Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
# For terms of use and license, see https://www.unicode.org/terms_of_use.html
Expand All @@ -15,8 +15,12 @@
#
# Comments are lines that begin with a #.
#
# The fully-escaped field percent-escapes all literal syntax characters and all characters above ASCII.
# The fully-escaped field percent-escapes all code points based on https://url.spec.whatwg.org/#percent-encoded-bytes.
# This means all literal syntax characters in each Part and all code points above ASCII.
# It also percent-escapes the last character, if it is Link_Term=Soft.
#
# The minimally-escaped field is the more readable format described in UTS #58.
#
# Each pair also has a comment line for the internal structure of the URL.
# 𝑺 = the schema
# 𝑯 = the host (typically just a domain name) the internal structure is not broken down.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,12 @@ public static void main(String[] args) throws IOException {
"",
"Comments are lines that begin with a #.",
"",
"The fully-escaped field percent-escapes all literal syntax characters and all characters above ASCII.",
"The fully-escaped field percent-escapes all code points based on https://url.spec.whatwg.org/#percent-encoded-bytes.",
"This means all literal syntax characters in each Part and all code points above ASCII.",
"It also percent-escapes the last character, if it is Link_Term=Soft.",
"",
"The minimally-escaped field is the more readable format described in UTS #58.",
"",
"Each pair also has a comment line for the internal structure of the URL.",
"𝑺 = the schema",
"𝑯 = the host (typically just a domain name) the internal structure is not broken down.",
Expand Down
Loading