| author | |
| committer | |
| log | 7ea09ec54a45ddcb55c867c3b48e71e3c94119d6 |
| tree | 4b2455e7059dd63624b0c96dec29f7f34816dec4 |
| parent | c39e4d6ff492cf72c9d2f271bf0f39d121f83bc0 |
4 files changed, 12 insertions(+), 1 deletions(-)
scripts/_common.zig+6-1| ... | ... | @@ -31,8 +31,13 @@ pub fn Main(comptime T: type) type { |
| 31 | 31 | \\// See http://www.unicode.org/reports/tr44/ for more information. |
| 32 | 32 | \\// |
| 33 | 33 | \\ |
| 34 | \\ | |
| 35 | 34 | ); |
| 35 | try w.print( | |
| 36 | \\// Based on the source file: {s} | |
| 37 | \\// | |
| 38 | \\ | |
| 39 | \\ | |
| 40 | , .{T.source_url}); | |
| 36 | 41 | try w.writeAll(T.dest_header); |
| 37 | 42 | |
| 38 | 43 | const req = try zfetch.Request.init(alloc, T.source_url, null); |
src/arabic_shaping.zig+2| ... | ... | @@ -1,6 +1,8 @@ |
| 1 | 1 | // This file is part of the Unicode Character Database |
| 2 | 2 | // See http://www.unicode.org/reports/tr44/ for more information. |
| 3 | 3 | // |
| 4 | // Based on the source file: https://unicode.org/Public/13.0.0/ucd/ArabicShaping.txt | |
| 5 | // | |
| 4 | 6 | |
| 5 | 7 | pub const Shaping = struct { |
| 6 | 8 | codepoint: u21, |
src/bidi_brackets.zig+2| ... | ... | @@ -1,6 +1,8 @@ |
| 1 | 1 | // This file is part of the Unicode Character Database |
| 2 | 2 | // See http://www.unicode.org/reports/tr44/ for more information. |
| 3 | 3 | // |
| 4 | // Based on the source file: https://unicode.org/Public/13.0.0/ucd/BidiBrackets.txt | |
| 5 | // | |
| 4 | 6 | |
| 5 | 7 | pub const BracketPairing = struct { |
| 6 | 8 | codepoint: u21, |
src/blocks.zig+2| ... | ... | @@ -1,6 +1,8 @@ |
| 1 | 1 | // This file is part of the Unicode Character Database |
| 2 | 2 | // See http://www.unicode.org/reports/tr44/ for more information. |
| 3 | 3 | // |
| 4 | // Based on the source file: https://unicode.org/Public/13.0.0/ucd/Blocks.txt | |
| 5 | // | |
| 4 | 6 | |
| 5 | 7 | pub const Block = struct { |
| 6 | 8 | from: u21, |