From 4c1485ce2c1d2d985e9733214b211a4f40c0c375 Mon Sep 17 00:00:00 2001 From: marzavec Date: Thu, 12 Apr 2018 17:45:23 -0700 Subject: katex update, added changelog --- client/katex/contrib/copy-tex.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 client/katex/contrib/copy-tex.css (limited to 'client/katex/contrib/copy-tex.css') diff --git a/client/katex/contrib/copy-tex.css b/client/katex/contrib/copy-tex.css new file mode 100644 index 0000000..aae1a93 --- /dev/null +++ b/client/katex/contrib/copy-tex.css @@ -0,0 +1,12 @@ +/* Force selection of entire .katex/.katex-display blocks, so that we can + * copy/paste the entire source code. If you omit this CSS, partial + * selections of a formula will work, but will copy the ugly HTML + * representation instead of the LaTeX source code. (Full selections will + * still produce the LaTeX source code.) + */ +.katex, .katex-display { + user-select: all; + -moz-user-select: all; + -webkit-user-select: all; + -ms-user-select: all; +} -- cgit v1.2.1