Better KaTex Copy

使得KaTex公式在复制时不会出现换行和重复字符等奇怪的问题 ⚠注意:可能破坏观感!

/* ==UserStyle==
@name           Better KaTex Copy
@namespace      better_katex_copy
@version        1.0.0
@description    使得KaTex公式在复制时不会出现换行和重复字符等奇怪的问题 ⚠注意:可能破坏观感!
@author         lingbopro
@license        WTFPL
@preprocessor   stylus
@var checkbox hideSpaces "隐藏公式的空格" 0
==/UserStyle== */
@-moz-document regexp(".*") {
    /* KaTex复制优化 */
    .katex {
        .katex-mathml {
            user-select: none;
            display: none;
        }

        if hideSpaces {
            .katex-html {
                .strut,
                .mspace {
                    display: none;
                }
            }
        }
    }
}