| author | |
| committer | |
| log | 62fa7d7fcbf9db0bb241864d2243e2ad0f15bc00 |
| tree | 30f8c5ccc1be17ff4e1d92334bb7e6833aa24459 |
| parent | b529d1ead1e953ceca702814f80a40ca0076ed9d |
6 files changed, 6 insertions(+), 0 deletions(-)
scripts/_common.zig+1| ... | @@ -36,6 +36,7 @@ pub fn Main(comptime T: type) type { | ... | @@ -36,6 +36,7 @@ pub fn Main(comptime T: type) type { |
| 36 | try w.print( | 36 | try w.print( |
| 37 | \\// Based on the source file: {s} | 37 | \\// Based on the source file: {s} |
| 38 | \\// | 38 | \\// |
| 39 | \\// zig fmt: off | ||
| 39 | \\ | 40 | \\ |
| 40 | \\ | 41 | \\ |
| 41 | , .{T.source_url}); | 42 | , .{T.source_url}); |
src/arabic_shaping.zig+1| ... | @@ -3,6 +3,7 @@ | ... | @@ -3,6 +3,7 @@ |
| 3 | // | 3 | // |
| 4 | // Based on the source file: https://unicode.org/Public/13.0.0/ucd/ArabicShaping.txt | 4 | // Based on the source file: https://unicode.org/Public/13.0.0/ucd/ArabicShaping.txt |
| 5 | // | 5 | // |
| 6 | // zig fmt: off | ||
| 6 | 7 | ||
| 7 | pub const Shaping = struct { | 8 | pub const Shaping = struct { |
| 8 | codepoint: u21, | 9 | codepoint: u21, |
src/bidi_brackets.zig+1| ... | @@ -3,6 +3,7 @@ | ... | @@ -3,6 +3,7 @@ |
| 3 | // | 3 | // |
| 4 | // Based on the source file: https://unicode.org/Public/13.0.0/ucd/BidiBrackets.txt | 4 | // Based on the source file: https://unicode.org/Public/13.0.0/ucd/BidiBrackets.txt |
| 5 | // | 5 | // |
| 6 | // zig fmt: off | ||
| 6 | 7 | ||
| 7 | pub const BracketPairing = struct { | 8 | pub const BracketPairing = struct { |
| 8 | codepoint: u21, | 9 | codepoint: u21, |
src/bidi_mirroring.zig+1| ... | @@ -3,6 +3,7 @@ | ... | @@ -3,6 +3,7 @@ |
| 3 | // | 3 | // |
| 4 | // Based on the source file: https://unicode.org/Public/13.0.0/ucd/BidiMirroring.txt | 4 | // Based on the source file: https://unicode.org/Public/13.0.0/ucd/BidiMirroring.txt |
| 5 | // | 5 | // |
| 6 | // zig fmt: off | ||
| 6 | 7 | ||
| 7 | pub const Mirroring = struct { | 8 | pub const Mirroring = struct { |
| 8 | codepoint: u21, | 9 | codepoint: u21, |
src/blocks.zig+1| ... | @@ -3,6 +3,7 @@ | ... | @@ -3,6 +3,7 @@ |
| 3 | // | 3 | // |
| 4 | // Based on the source file: https://unicode.org/Public/13.0.0/ucd/Blocks.txt | 4 | // Based on the source file: https://unicode.org/Public/13.0.0/ucd/Blocks.txt |
| 5 | // | 5 | // |
| 6 | // zig fmt: off | ||
| 6 | 7 | ||
| 7 | pub const Block = struct { | 8 | pub const Block = struct { |
| 8 | from: u21, | 9 | from: u21, |
src/cjk_radicals.zig+1| ... | @@ -3,6 +3,7 @@ | ... | @@ -3,6 +3,7 @@ |
| 3 | // | 3 | // |
| 4 | // Based on the source file: https://unicode.org/Public/13.0.0/ucd/CJKRadicals.txt | 4 | // Based on the source file: https://unicode.org/Public/13.0.0/ucd/CJKRadicals.txt |
| 5 | // | 5 | // |
| 6 | // zig fmt: off | ||
| 6 | 7 | ||
| 7 | pub const CJKRadical = struct { | 8 | pub const CJKRadical = struct { |
| 8 | number: u8, | 9 | number: u8, |