diff options
| -rwxr-xr-x | util/compile.py | 2 | ||||
| -rw-r--r-- | util/tmpl/kanji-list.html | 7 | 
2 files changed, 8 insertions, 1 deletions
| diff --git a/util/compile.py b/util/compile.py index 1b69bd83..842dfa9a 100755 --- a/util/compile.py +++ b/util/compile.py @@ -161,7 +161,7 @@ def parse_kanji_dic(path):          character = segments[0]          kunyomi = ' '.join(filter(lambda x: list(filter(is_hiragana, x)), segments[1:]))          onyomi = ' '.join(filter(lambda x: list(filter(is_katakana, x)), segments[1:])) -        glossary = '; '.join(re.findall('\{([^\}]+)\}', line)) +        glossary = re.findall('\{([^\}]+)\}', line)          results[character] = (kunyomi or None, onyomi or None, glossary)      return results diff --git a/util/tmpl/kanji-list.html b/util/tmpl/kanji-list.html new file mode 100644 index 00000000..b0e43634 --- /dev/null +++ b/util/tmpl/kanji-list.html @@ -0,0 +1,7 @@ +{{> header.html}} +{{#each defs}} +<div class="definition"> +    {{> kanji.html}} +</div> +{{/each}} +{{> footer.html}} |