2019-12-27 23:58:11 +00:00
<!DOCTYPE html> < html > < head > < / head > < body >
2020-11-25 00:06:29 +00:00
<!-- Term entry templates -->
< template id = "term-entry-template" data-remove-whitespace-text = "true" > < div class = "entry" data-type = "term" >
2020-11-19 23:34:41 +00:00
< div class = "entry-current-indicator" title = "Current entry (Alt + Up/Down/Home/End/PgUp/PgDn)" > < / div >
2019-12-27 23:58:11 +00:00
< div class = "entry-header1" >
< div class = "entry-header2" >
< div class = "entry-header3" >
< div class = "actions" >
2020-11-25 17:39:09 +00:00
< button class = "action-button action-view-note" hidden disabled data-icon = "view-note" title = "View added note (Alt + V)" > < / button >
< button class = "action-button action-add-note" hidden disabled data-icon = "add-term-kanji" data-mode = "term-kanji" title = "Add expression (Alt + E)" > < / button >
< button class = "action-button action-add-note" hidden disabled data-icon = "add-term-kana" data-mode = "term-kana" title = "Add reading (Alt + R)" > < / button >
2020-05-24 17:37:23 +00:00
< button class = "action-button action-play-audio" data-icon = "play-audio" title = "Play audio (Alt + P)" > < / button >
2019-12-27 23:58:11 +00:00
< / div >
< div class = "term-expression-list" > < / div >
< / div >
< div class = "term-reasons" > < / div >
< / div >
2020-02-11 02:38:11 +00:00
< div class = "term-special-tags" > < div class = "frequencies tag-list" > < / div > < / div >
2019-12-27 23:58:11 +00:00
< / div >
2020-03-01 19:04:54 +00:00
< div class = "term-entry-body" >
2020-03-28 16:31:41 +00:00
< div class = "term-entry-body-section term-pitch-accent-container" > < ol class = "term-entry-body-section-content term-pitch-accent-group-list" > < / ol > < / div >
< div class = "term-entry-body-section term-definition-container" > < ol class = "term-entry-body-section-content term-definition-list" > < / ol > < / div >
2020-03-01 19:04:54 +00:00
< / div >
2020-11-14 00:48:22 +00:00
< div class = "debug-info" > < a class = "debug-log-link" > Log debug info to console< / a > < / div >
2019-12-27 23:58:11 +00:00
< / div > < / template >
2020-11-25 00:06:29 +00:00
< template id = "term-expression-template" data-remove-whitespace-text = "true" > < div class = "term-expression" >
< div class = "term-expression-text-container" >
< span class = "term-expression-text source-text" > < / span >
< / div >
< div class = "term-expression-details" >
< button class = "action-button action-play-audio" data-icon = "play-audio" title = "Play audio" > < / button >
< div class = "tags tag-list" > < / div >
< div class = "frequencies tag-list" > < / div >
< / div >
< / div > < / template >
2020-05-24 17:37:23 +00:00
< template id = "term-definition-item-template" > < li class = "term-definition-item" > < div class = "term-definition-tag-list tag-list" > < / div > < div class = "term-definition-disambiguation-list" > < / div > < ul class = "term-glossary-list" > < / ul > < / li > < / template >
2020-04-10 02:19:58 +00:00
< template id = "term-definition-disambiguation-template" > < span class = "term-definition-disambiguation" > < / span > < / template >
2020-02-02 01:20:32 +00:00
< template id = "term-glossary-item-template" > < li class = "term-glossary-item" > < span class = "term-glossary-separator" > < / span > < span class = "term-glossary" > < / span > < / li > < / template >
2020-04-17 22:41:06 +00:00
< template id = "term-glossary-item-image-template" > < li class = "term-glossary-item" data-has-image = "true" > < span class = "term-glossary-separator" > < / span > < span class = "term-glossary" > < a class = "term-glossary-image-link" target = "_blank" rel = "noreferrer noopener" > < span class = "term-glossary-image-container" > < span class = "term-glossary-image-aspect-ratio-sizer" > < / span > < img class = "term-glossary-image" alt = "" / > < span class = "term-glossary-image-container-overlay" > < / span > < / span > < span class = "term-glossary-image-link-text" > Image< / span > < / a > < span class = "term-glossary-image-description" > < / span > < / span > < / li > < / template >
2020-02-02 01:20:32 +00:00
< template id = "term-reason-template" > < span class = "term-reason" > < / span > < span class = "term-reason-separator" > < / span > < / template >
2019-12-27 23:58:11 +00:00
2020-11-25 00:06:29 +00:00
<!-- Pitch accent templates -->
2020-03-01 19:20:11 +00:00
< template id = "term-pitch-accent-static-template" > < svg xmlns = "http://www.w3.org/2000/svg" style = "display: none;" >
< defs >
< g id = "term-pitch-accent-graph-dot" > < circle cx = "0" cy = "0" r = "15" / > < / g >
< g id = "term-pitch-accent-graph-dot-downstep" > < circle cx = "0" cy = "0" r = "15" / > < circle cx = "0" cy = "0" r = "5" / > < / g >
< g id = "term-pitch-accent-graph-triangle" > < path d = "M0 13 L15 -13 L-15 -13 Z" / > < / g >
< / defs >
< / svg > < / template >
2020-03-01 19:15:28 +00:00
< template id = "term-pitch-accent-group-template" > < li class = "term-pitch-accent-group" > < span class = "term-pitch-accent-group-tag-list tag-list" > < / span > < ul class = "term-pitch-accent-list" > < / ul > < / li > < / template >
2020-03-29 15:19:43 +00:00
< template id = "term-pitch-accent-disambiguation-template" > < span class = "term-pitch-accent-disambiguation" > < / span > < / template >
< template id = "term-pitch-accent-template" > < li class = "term-pitch-accent" > < span class = "term-pitch-accent-tag-list tag-list" > < / span > < span class = "term-pitch-accent-disambiguation-list" > < / span > < span class = "term-pitch-accent-characters" > < / span > < span class = "term-pitch-accent-position" > < / span > < span class = "term-pitch-accent-details" > < svg class = "term-pitch-accent-graph" xmlns = "http://www.w3.org/2000/svg" > < path class = "term-pitch-accent-graph-line" / > < path class = "term-pitch-accent-graph-line-tail" / > < / svg > < / span > < / li > < / template >
2020-03-01 19:15:28 +00:00
< template id = "term-pitch-accent-character-template" > < span class = "term-pitch-accent-character" > < span class = "term-pitch-accent-character-inner" > < / span > < / span > < / template >
2020-11-25 00:06:29 +00:00
<!-- Kanji entry templates -->
2019-12-27 23:58:11 +00:00
< template id = "kanji-entry-template" > < div class = "entry" data-type = "kanji" >
2020-11-19 23:34:41 +00:00
< div class = "entry-current-indicator" title = "Current entry (Alt + Up/Down/Home/End/PgUp/PgDn)" > < / div >
2019-12-27 23:58:11 +00:00
< div class = "entry-header1" >
< div class = "entry-header2" >
< div class = "entry-header3" >
< div class = "actions" >
2020-11-25 17:39:09 +00:00
< button class = "action-button action-view-note" hidden disabled data-icon = "view-note" title = "View added note (Alt + V)" > < / button >
< button class = "action-button action-add-note" hidden disabled data-icon = "add-term-kanji" data-mode = "kanji" title = "Add Kanji (Alt + K)" > < / button >
2019-12-27 23:58:11 +00:00
< / div >
2020-01-17 00:35:19 +00:00
< div class = "kanji-glyph source-text" > < / div >
2019-12-27 23:58:11 +00:00
< / div >
< / div >
< div class = "frequencies" > < / div >
< / div >
< div class = "tags tag-list" > < / div >
< table class = "kanji-glyph-data" > < tbody >
< tr >
< th > Glossary< / th >
< th > Readings< / th >
< th > Statistics< / th >
< / tr >
< tr >
< td class = "kanji-glossary-container" > < ol class = "kanji-glossary-list" > < / ol > < / td >
< td class = "kanji-readings" > < dl class = "kanji-readings-chinese" > < / dl > < dl class = "kanji-readings-japanese" > < / dl > < / td >
< td class = "kanji-statistics" > < / td >
< / tr >
< tr > < th colspan = "3" > Classifications< / th > < / tr >
< tr > < td colspan = "3" class = "kanji-classifications" > < / td > < / tr >
< tr > < th colspan = "3" > Codepoints< / th > < / tr >
< tr > < td colspan = "3" class = "kanji-codepoints" > < / td > < / tr >
< tr > < th colspan = "3" > Dictionary Indices< / th > < / tr >
< tr > < td colspan = "3" class = "kanji-dictionary-indices" > < / td > < / tr >
< / tbody > < / table >
2020-11-14 18:42:50 +00:00
< div class = "debug-info" > < a class = "debug-log-link" > Log debug info to console< / a > < / div >
2019-12-27 23:58:11 +00:00
< / div > < / template >
< template id = "kanji-info-table-template" > < table class = "kanji-info-table" > < tbody class = "kanji-info-table-body" > < / tbody > < / table > < / template >
< template id = "kanji-info-table-item-template" > < tr class = "kanji-info-table-item" > < th class = "kanji-info-table-item-header" > < / th > < td class = "kanji-info-table-item-value" > < / td > < / tr > < / template >
< template id = "kanji-info-table-empty-template" > < tr class = "kanji-info-table-item kanji-info-table-item-empty" > < td class = "kanji-info-table-item-value-empty" > No data found< / td > < /tr class="kanji-info-table-item">< / template >
< template id = "kanji-glossary-item-template" > < li class = "kanji-glossary-item" > < span class = "kanji-glossary" > < / span > < / li > < / template >
< template id = "kanji-reading-template" > < dd class = "kanji-reading" > < / dd > < / template >
2020-11-25 00:06:29 +00:00
<!-- Tag templates -->
2020-01-30 00:52:24 +00:00
< template id = "tag-template" > < span class = "tag" > < span class = "tag-inner" > < / span > < / span > < / template >
2020-12-05 22:45:45 +00:00
< template id = "term-tag-frequency-template" data-remove-whitespace-text = "true" > < span class = "tag" data-category = "frequency" >
< span class = "tag-inner" >
< span class = "tag-frequency-disambiguation" >
< span class = "tag-frequency-disambiguation-expression" > < / span >
< span class = "tag-frequency-disambiguation-separator" > < / span >
< span class = "tag-frequency-disambiguation-reading" > < / span >
< / span >
< span class = "tag-frequency-dictionary-name" > < / span >
< span class = "tag-frequency-separator" > < / span >
< span class = "tag-frequency-value" > < / span >
< / span >
< / span > < / template >
< template id = "kanji-tag-frequency-template" data-remove-whitespace-text = "true" > < span class = "tag" data-category = "frequency" >
< span class = "tag-inner" >
< span class = "tag-frequency-dictionary-name" > < / span >
< span class = "tag-frequency-separator" > < / span >
< span class = "tag-frequency-value" > < / span >
< / span >
< / span > < / template >
2019-12-27 23:58:11 +00:00
< / body > < / html >