Skip to content

Commit 70cf673

Browse files
authored
Merge pull request #793 from stan-dev/docs-2-35
Docs generated by Jenkins for v2-35
2 parents f541db7 + 8e2dc11 commit 70cf673

File tree

262 files changed

+25622
-17460
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

262 files changed

+25622
-17460
lines changed

docs/2_35/404.html

Lines changed: 54 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
33

44
<meta charset="utf-8">
5-
<meta name="generator" content="quarto-1.4.550">
5+
<meta name="generator" content="quarto-1.5.53">
66

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

99

10-
<title>Stan Docs - Page Not Found</title>
10+
<title>Page Not Found</title>
1111
<style>
1212
code{white-space: pre-wrap;}
1313
span.smallcaps{font-variant: small-caps;}
@@ -33,7 +33,7 @@
3333
}
3434
@media print {
3535
pre > code.sourceCode { white-space: pre-wrap; }
36-
pre > code.sourceCode > span { text-indent: -5em; padding-left: 5em; }
36+
pre > code.sourceCode > span { display: inline-block; text-indent: -5em; padding-left: 5em; }
3737
}
3838
pre.numberSource code
3939
{ counter-reset: source-line 0; }
@@ -119,7 +119,7 @@
119119
</a>
120120
</div>
121121
<div id="quarto-search" class="" title="Search"></div>
122-
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
122+
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
123123
<span class="navbar-toggler-icon"></span>
124124
</button>
125125
<div class="collapse navbar-collapse" id="navbarCollapse">
@@ -141,7 +141,7 @@
141141
<span class="menu-text">Functions Reference</span></a>
142142
</li>
143143
<li class="nav-item dropdown ">
144-
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-interfaces" role="button" data-bs-toggle="dropdown" aria-expanded="false">
144+
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-interfaces" role="link" data-bs-toggle="dropdown" aria-expanded="false">
145145
<span class="menu-text">Interfaces</span>
146146
</a>
147147
<ul class="dropdown-menu" aria-labelledby="nav-menu-interfaces">
@@ -172,7 +172,7 @@
172172
</ul>
173173
</li>
174174
<li class="nav-item dropdown ">
175-
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-other-packages" role="button" data-bs-toggle="dropdown" aria-expanded="false">
175+
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-other-packages" role="link" data-bs-toggle="dropdown" aria-expanded="false">
176176
<span class="menu-text">Other Packages</span>
177177
</a>
178178
<ul class="dropdown-menu" aria-labelledby="nav-menu-other-packages">
@@ -216,7 +216,7 @@
216216
</li>
217217
</ul>
218218
</div> <!-- /navcollapse -->
219-
<div class="quarto-navbar-tools tools-wide">
219+
<div class="quarto-navbar-tools tools-wide">
220220
<a href="https://github.com/stan-dev" title="" class="quarto-navigation-tool px-1" aria-label=""><i class="bi bi-github"></i></a>
221221
<a href="https://discourse.mc-stan.org" title="" class="quarto-navigation-tool px-1" aria-label=""><i class="bi bi-chat-text-fill"></i></a>
222222
<a href="" class="quarto-color-scheme-toggle quarto-navigation-tool px-1" onclick="window.quartoToggleColorScheme(); return false;" title="Toggle dark mode"><i class="bi"></i></a>
@@ -233,7 +233,7 @@
233233
<div id="quarto-content" class="quarto-container page-columns page-rows-contents page-layout-article page-navbar">
234234
<!-- sidebar -->
235235
<!-- margin-sidebar -->
236-
<div id="quarto-margin-sidebar" class="sidebar margin-sidebar">
236+
<div id="quarto-margin-sidebar" class="sidebar margin-sidebar zindex-bottom">
237237

238238
</div>
239239
<!-- main -->
@@ -448,18 +448,7 @@ <h1 class="title">Page Not Found</h1>
448448
}
449449
return false;
450450
}
451-
const clipboard = new window.ClipboardJS('.code-copy-button', {
452-
text: function(trigger) {
453-
const codeEl = trigger.previousElementSibling.cloneNode(true);
454-
for (const childEl of codeEl.children) {
455-
if (isCodeAnnotation(childEl)) {
456-
childEl.remove();
457-
}
458-
}
459-
return codeEl.innerText;
460-
}
461-
});
462-
clipboard.on('success', function(e) {
451+
const onCopySuccess = function(e) {
463452
// button target
464453
const button = e.trigger;
465454
// don't keep focus
@@ -491,7 +480,47 @@ <h1 class="title">Page Not Found</h1>
491480
}, 1000);
492481
// clear code selection
493482
e.clearSelection();
483+
}
484+
const getTextToCopy = function(trigger) {
485+
const codeEl = trigger.previousElementSibling.cloneNode(true);
486+
for (const childEl of codeEl.children) {
487+
if (isCodeAnnotation(childEl)) {
488+
childEl.remove();
489+
}
490+
}
491+
return codeEl.innerText;
492+
}
493+
const clipboard = new window.ClipboardJS('.code-copy-button:not([data-in-quarto-modal])', {
494+
text: getTextToCopy
494495
});
496+
clipboard.on('success', onCopySuccess);
497+
if (window.document.getElementById('quarto-embedded-source-code-modal')) {
498+
// For code content inside modals, clipBoardJS needs to be initialized with a container option
499+
// TODO: Check when it could be a function (https://github.com/zenorocha/clipboard.js/issues/860)
500+
const clipboardModal = new window.ClipboardJS('.code-copy-button[data-in-quarto-modal]', {
501+
text: getTextToCopy,
502+
container: window.document.getElementById('quarto-embedded-source-code-modal')
503+
});
504+
clipboardModal.on('success', onCopySuccess);
505+
}
506+
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
507+
var mailtoRegex = new RegExp(/^mailto:/);
508+
var filterRegex = new RegExp('/' + window.location.host + '/');
509+
var isInternal = (href) => {
510+
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
511+
}
512+
// Inspect non-navigation links and adorn them if external
513+
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool):not(.about-link)');
514+
for (var i=0; i<links.length; i++) {
515+
const link = links[i];
516+
if (!isInternal(link.href)) {
517+
// undo the damage that might have been done by quarto-nav.js in the case of
518+
// links that we want to consider external
519+
if (link.dataset.originalHref !== undefined) {
520+
link.href = link.dataset.originalHref;
521+
}
522+
}
523+
}
495524
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
496525
const config = {
497526
allowHTML: true,
@@ -526,7 +555,11 @@ <h1 class="title">Page Not Found</h1>
526555
try { href = new URL(href).hash; } catch {}
527556
const id = href.replace(/^#\/?/, "");
528557
const note = window.document.getElementById(id);
529-
return note.innerHTML;
558+
if (note) {
559+
return note.innerHTML;
560+
} else {
561+
return "";
562+
}
530563
});
531564
}
532565
const xrefs = window.document.querySelectorAll('a.quarto-xref');

docs/2_35/cmdstan-guide-2_35.pdf

0 Bytes
Binary file not shown.

docs/2_35/cmdstan-guide/bib.html

Lines changed: 52 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
33

44
<meta charset="utf-8">
5-
<meta name="generator" content="quarto-1.4.550">
5+
<meta name="generator" content="quarto-1.5.53">
66

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

99

10-
<title>Stan Docs</title>
10+
<title>bib</title>
1111
<style>
1212
code{white-space: pre-wrap;}
1313
span.smallcaps{font-variant: small-caps;}
@@ -85,7 +85,7 @@
8585
</a>
8686
</div>
8787
<div id="quarto-search" class="" title="Search"></div>
88-
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
88+
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
8989
<span class="navbar-toggler-icon"></span>
9090
</button>
9191
<div class="collapse navbar-collapse" id="navbarCollapse">
@@ -107,7 +107,7 @@
107107
<span class="menu-text">Functions Reference</span></a>
108108
</li>
109109
<li class="nav-item dropdown ">
110-
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-interfaces" role="button" data-bs-toggle="dropdown" aria-expanded="false">
110+
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-interfaces" role="link" data-bs-toggle="dropdown" aria-expanded="false">
111111
<span class="menu-text">Interfaces</span>
112112
</a>
113113
<ul class="dropdown-menu" aria-labelledby="nav-menu-interfaces">
@@ -138,7 +138,7 @@
138138
</ul>
139139
</li>
140140
<li class="nav-item dropdown ">
141-
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-other-packages" role="button" data-bs-toggle="dropdown" aria-expanded="false">
141+
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-other-packages" role="link" data-bs-toggle="dropdown" aria-expanded="false">
142142
<span class="menu-text">Other Packages</span>
143143
</a>
144144
<ul class="dropdown-menu" aria-labelledby="nav-menu-other-packages">
@@ -182,7 +182,7 @@
182182
</li>
183183
</ul>
184184
</div> <!-- /navcollapse -->
185-
<div class="quarto-navbar-tools tools-wide">
185+
<div class="quarto-navbar-tools tools-wide">
186186
<a href="https://github.com/stan-dev" title="" class="quarto-navigation-tool px-1" aria-label=""><i class="bi bi-github"></i></a>
187187
<a href="https://discourse.mc-stan.org" title="" class="quarto-navigation-tool px-1" aria-label=""><i class="bi bi-chat-text-fill"></i></a>
188188
<a href="" class="quarto-color-scheme-toggle quarto-navigation-tool px-1" onclick="window.quartoToggleColorScheme(); return false;" title="Toggle dark mode"><i class="bi"></i></a>
@@ -400,18 +400,7 @@ <h1 class="unnumbered"><i style="font-size: 110%; color:var(--bs-body-color)">Re
400400
}
401401
return false;
402402
}
403-
const clipboard = new window.ClipboardJS('.code-copy-button', {
404-
text: function(trigger) {
405-
const codeEl = trigger.previousElementSibling.cloneNode(true);
406-
for (const childEl of codeEl.children) {
407-
if (isCodeAnnotation(childEl)) {
408-
childEl.remove();
409-
}
410-
}
411-
return codeEl.innerText;
412-
}
413-
});
414-
clipboard.on('success', function(e) {
403+
const onCopySuccess = function(e) {
415404
// button target
416405
const button = e.trigger;
417406
// don't keep focus
@@ -443,7 +432,47 @@ <h1 class="unnumbered"><i style="font-size: 110%; color:var(--bs-body-color)">Re
443432
}, 1000);
444433
// clear code selection
445434
e.clearSelection();
435+
}
436+
const getTextToCopy = function(trigger) {
437+
const codeEl = trigger.previousElementSibling.cloneNode(true);
438+
for (const childEl of codeEl.children) {
439+
if (isCodeAnnotation(childEl)) {
440+
childEl.remove();
441+
}
442+
}
443+
return codeEl.innerText;
444+
}
445+
const clipboard = new window.ClipboardJS('.code-copy-button:not([data-in-quarto-modal])', {
446+
text: getTextToCopy
446447
});
448+
clipboard.on('success', onCopySuccess);
449+
if (window.document.getElementById('quarto-embedded-source-code-modal')) {
450+
// For code content inside modals, clipBoardJS needs to be initialized with a container option
451+
// TODO: Check when it could be a function (https://github.com/zenorocha/clipboard.js/issues/860)
452+
const clipboardModal = new window.ClipboardJS('.code-copy-button[data-in-quarto-modal]', {
453+
text: getTextToCopy,
454+
container: window.document.getElementById('quarto-embedded-source-code-modal')
455+
});
456+
clipboardModal.on('success', onCopySuccess);
457+
}
458+
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
459+
var mailtoRegex = new RegExp(/^mailto:/);
460+
var filterRegex = new RegExp('/' + window.location.host + '/');
461+
var isInternal = (href) => {
462+
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
463+
}
464+
// Inspect non-navigation links and adorn them if external
465+
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool):not(.about-link)');
466+
for (var i=0; i<links.length; i++) {
467+
const link = links[i];
468+
if (!isInternal(link.href)) {
469+
// undo the damage that might have been done by quarto-nav.js in the case of
470+
// links that we want to consider external
471+
if (link.dataset.originalHref !== undefined) {
472+
link.href = link.dataset.originalHref;
473+
}
474+
}
475+
}
447476
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
448477
const config = {
449478
allowHTML: true,
@@ -478,7 +507,11 @@ <h1 class="unnumbered"><i style="font-size: 110%; color:var(--bs-body-color)">Re
478507
try { href = new URL(href).hash; } catch {}
479508
const id = href.replace(/^#\/?/, "");
480509
const note = window.document.getElementById(id);
481-
return note.innerHTML;
510+
if (note) {
511+
return note.innerHTML;
512+
} else {
513+
return "";
514+
}
482515
});
483516
}
484517
const xrefs = window.document.querySelectorAll('a.quarto-xref');

0 commit comments

Comments
 (0)