Unnecessary Spaces in Safari's Reader Mode
yamatoiizuka opened this issue · 4 comments
yamatoiizuka commented
yamatoiizuka commented
yamatoiizuka commented
そのほかあり得そうなのは、Web コンポーネントを用いて、typeset-thinspace と typeset-kerning をカプセル化してしまう、あたりだろうか…? Web コンポーネントは Node 環境での正解がよくわからない。#49 も参照のこと
yamatoiizuka commented
HTML 側でスペースを出力するのをやめ、CSS の before/after 擬似要素の content で出力するのがよさそう。
例)
.typeset-thin-space::after,
.typeset-kerning::after {
font-family: ling-one;
content: ' ';
}
yamatoiizuka commented