From 553b17d09cdcb2735e2cb69f13607e6ea6dd8418 Mon Sep 17 00:00:00 2001 From: Thales Lima Oliveira Date: Sun, 19 Jul 2020 23:48:16 -0300 Subject: User guide update --- docs/katex/contrib/copy-tex.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 docs/katex/contrib/copy-tex.css (limited to 'docs/katex/contrib/copy-tex.css') diff --git a/docs/katex/contrib/copy-tex.css b/docs/katex/contrib/copy-tex.css new file mode 100644 index 0000000..90801d8 --- /dev/null +++ b/docs/katex/contrib/copy-tex.css @@ -0,0 +1,14 @@ +/* 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