summaryrefslogtreecommitdiffstats
path: root/kanji_info_fetcher/wadoku_client.py
diff options
context:
space:
mode:
Diffstat (limited to 'kanji_info_fetcher/wadoku_client.py')
-rw-r--r--kanji_info_fetcher/wadoku_client.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/kanji_info_fetcher/wadoku_client.py b/kanji_info_fetcher/wadoku_client.py
index 550f801..39d5c7e 100644
--- a/kanji_info_fetcher/wadoku_client.py
+++ b/kanji_info_fetcher/wadoku_client.py
@@ -35,7 +35,9 @@ def inject_hiragana_with_accents(entries: list) -> list:
result = first_reading \
.replace("~", "") \
.replace("|", "") \
- .replace("・", "")
+ .replace("│", "") \
+ .replace("・", "") \
+ .replace("・", "")
entry.hiragana = result
entries_with_readings.append(entry)