comparison katex/contrib/copy-tex.css @ 8:4a25b534c81c javascript-experiment

Add v8 engine and include katex
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 17 Jun 2020 21:43:52 +0200
parents
children
comparison
equal deleted inserted replaced
7:a5aa39557726 8:4a25b534c81c
1 /* Force selection of entire .katex/.katex-display blocks, so that we can
2 * copy/paste the entire source code. If you omit this CSS, partial
3 * selections of a formula will work, but will copy the ugly HTML
4 * representation instead of the LaTeX source code. (Full selections will
5 * still produce the LaTeX source code.)
6 */
7 .katex,
8 .katex-display {
9 user-select: all;
10 -moz-user-select: all;
11 -webkit-user-select: all;
12 -ms-user-select: all;
13 }
14