From c7153e3f10a42ea43e818da92580da9178a6fc8e Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Tue, 26 Sep 2023 11:58:28 +0200 Subject: Include N0-9 (extra jinmeiyou kanji) in index table --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 1022b10..69e5d6f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1167,7 +1167,7 @@ fn format_index(batches: &[Batch], kanji_levels: &[(String, String)]) -> Result< "LevelCountCharsMissing chars" )?; for (lvl, chars) in kanji_levels.iter() { - if lvl == "N0+" || lvl == "N0-9" || lvl.ends_with("-10") { + if lvl == "N0+" || lvl.ends_with("-10") { continue; } let chars = Charset::new(chars); -- cgit v1.2.3