Last active
June 18, 2019 20:55
-
-
Save kosamari/4faf99f76adf27c77a46f9be4cf3ce9e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- This, screen reader reads the chinese character too like "chinese character ___, kan, chinese character___, ji" --> | |
<ruby> | |
漢<rp>(</rp><rt>Kan</rt><rp>)</rp> | |
字<rp>(</rp><rt>ji</rt><rp>)</rp> | |
</ruby> | |
<!-- This, just reads "kan ji" --> | |
<ruby> | |
<span aria-hidden="true">漢</span> <rp>(</rp><rt>Kan</rt><rp>)</rp> | |
<span aria-hidden="true">字</span> <rp>(</rp><rt>ji</rt><rp>)</rp> | |
</ruby> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using
<rb>
instead of<span>
seems more appropriate, but still good 👍