We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
?view=print
?print-pdf
1 parent ebf01ef commit 19360edCopy full SHA for 19360ed
src/resources/formats/revealjs/plugins/line-highlight/line-highlight.js
@@ -1,6 +1,6 @@
1
window.QuartoLineHighlight = function () {
2
function isPrintView() {
3
- return /print-pdf/gi.test(window.location.search);
+ return /print-pdf/gi.test(window.location.search) || /view=print/gi.test(window.location.search);
4
}
5
6
const delimiters = {
src/resources/formats/revealjs/plugins/support/support.js
@@ -1,7 +1,7 @@
// catch all plugin for various quarto features
window.QuartoSupport = function () {
7
// helper for theme toggling
0 commit comments