ルビ
[# ベース[ふりがな]]でベースの文字にふりがなをつける
code:style.css
/* ruby element */
.line:not(.cursor-line) .deco-\# {
display: inline flex;
flex-direction: column-reverse;
vertical-align: bottom;
/* base text */
span:nth-child(1) {
display: inline flex;
justify-content: space-around;
width: 100%;
}
/* annotation text */
span:nth-child(2) {
line-height: 0;
font-size: 50%;
a {
display: inline flex;
justify-content: space-around;
width: 100%;
pointer-events: none;
color: var(--page-text-color);
}
}
}
UserCSS.icon