/* ==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 @downloadURL https://update.greasyfork.org/scripts/514249/Better%20KaTex%20Copy.user.css @updateURL https://update.greasyfork.org/scripts/514249/Better%20KaTex%20Copy.meta.css ==/UserStyle== */ @-moz-document regexp(".*") { /* KaTex复制优化 */ .katex { .katex-mathml { user-select: none; display: none; } if hideSpaces { .katex-html { .strut, .mspace { display: none; } } } } }