/* Show the escaped and hide the real char: {real-char} Only show the real-char: {real-char} */ .broken-code-point:not([data-escaped]), .broken-code-point[data-escaped]::before { border-radius: 4px; padding: 0 2px; color: var(--color-body); background: var(--color-text-light-1); } .broken-code-point[data-escaped]::before { visibility: visible; content: attr(data-escaped); } .broken-code-point[data-escaped] .char { /* make it copyable by selecting the text (AI suggestion, no other solution) */ position: absolute; opacity: 0; pointer-events: none; } /* Show the escaped and hide the real-char: {real-char} Hide the escaped and show the real-char: {real-char} */ .unicode-escaped .escaped-code-point[data-escaped]::before { visibility: visible; content: attr(data-escaped); color: var(--color-red); } .unicode-escaped .escaped-code-point .char { display: none; } .unicode-escaped .ambiguous-code-point { border: 1px var(--color-yellow) solid; }