Skip to content

Commit

Permalink
re-render
Browse files Browse the repository at this point in the history
  • Loading branch information
obrl-soil committed Feb 10, 2024
1 parent cb992ae commit f5768d2
Show file tree
Hide file tree
Showing 24 changed files with 5,681 additions and 25,490 deletions.
9 changes: 7 additions & 2 deletions docs/acknowledgements.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.4.533">
<meta name="generator" content="quarto-1.4.549">

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">

Expand Down Expand Up @@ -445,7 +445,12 @@ <h1 class="title">Acknowledgements</h1>
if (window.Quarto?.typesetMath) {
window.Quarto.typesetMath(note);
}
return note.innerHTML;
// TODO in 1.5, we should make sure this works without a callout special case
if (note.classList.contains("callout")) {
return note.outerHTML;
} else {
return note.innerHTML;
}
}
}
for (var i=0; i<xrefs.length; i++) {
Expand Down
Loading

0 comments on commit f5768d2

Please sign in to comment.