Skip to content

Commit

Permalink
deploy: 777f128
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 22, 2024
1 parent c0acec6 commit 71d33a2
Show file tree
Hide file tree
Showing 40 changed files with 791 additions and 760 deletions.
2 changes: 1 addition & 1 deletion .buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 3df04fa01699a83c13914221e3326017
config: c3d1de552845e458888b685c4bb6f38e
tags: 645f666f9bcd5a90fca523b33c5a78b7
7 changes: 4 additions & 3 deletions _static/searchtools.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ const Search = {

htmlToText: (htmlString, anchor) => {
const htmlElement = new DOMParser().parseFromString(htmlString, 'text/html');
for (const removalQuery of [".headerlinks", "script", "style"]) {
for (const removalQuery of [".headerlink", "script", "style"]) {
htmlElement.querySelectorAll(removalQuery).forEach((el) => { el.remove() });
}
if (anchor) {
Expand Down Expand Up @@ -328,13 +328,14 @@ const Search = {
for (const [title, foundTitles] of Object.entries(allTitles)) {
if (title.toLowerCase().trim().includes(queryLower) && (queryLower.length >= title.length/2)) {
for (const [file, id] of foundTitles) {
let score = Math.round(100 * queryLower.length / title.length)
const score = Math.round(Scorer.title * queryLower.length / title.length);
const boost = titles[file] === title ? 1 : 0; // add a boost for document titles
normalResults.push([
docNames[file],
titles[file] !== title ? `${titles[file]} > ${title}` : title,
id !== null ? "#" + id : "",
null,
score,
score + boost,
filenames[file],
]);
}
Expand Down
2 changes: 1 addition & 1 deletion citing.html
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ <h1 id="citing--page-root">How to cite<a class="headerlink" href="#citing--page-

</div>
Created using
<a href="http://www.sphinx-doc.org/">Sphinx</a> 7.3.7.
<a href="http://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
and
<a href="https://github.com/bashtage/sphinx-material/">Material for
Sphinx</a>
Expand Down
2 changes: 1 addition & 1 deletion contributing.html
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ <h1 id="contributing--page-root">How to contribute<a class="headerlink" href="#c

</div>
Created using
<a href="http://www.sphinx-doc.org/">Sphinx</a> 7.3.7.
<a href="http://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
and
<a href="https://github.com/bashtage/sphinx-material/">Material for
Sphinx</a>
Expand Down
2 changes: 1 addition & 1 deletion genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ <h1 id="index">Index</h1>

</div>
Created using
<a href="http://www.sphinx-doc.org/">Sphinx</a> 7.3.7.
<a href="http://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
and
<a href="https://github.com/bashtage/sphinx-material/">Material for
Sphinx</a>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ <h2 id="license">License<a class="headerlink" href="#license" title="Link to thi

</div>
Created using
<a href="http://www.sphinx-doc.org/">Sphinx</a> 7.3.7.
<a href="http://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
and
<a href="https://github.com/bashtage/sphinx-material/">Material for
Sphinx</a>
Expand Down
2 changes: 1 addition & 1 deletion installing.html
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ <h2 id="compatibility-with-upstream-releases">Compatibility with upstream releas

</div>
Created using
<a href="http://www.sphinx-doc.org/">Sphinx</a> 7.3.7.
<a href="http://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
and
<a href="https://github.com/bashtage/sphinx-material/">Material for
Sphinx</a>
Expand Down
2 changes: 1 addition & 1 deletion search.html
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ <h1 id="search-documentation">Search</h1>

</div>
Created using
<a href="http://www.sphinx-doc.org/">Sphinx</a> 7.3.7.
<a href="http://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
and
<a href="https://github.com/bashtage/sphinx-material/">Material for
Sphinx</a>
Expand Down
2 changes: 1 addition & 1 deletion searchindex.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tutorials.html
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ <h3 class="tutorial-title">

</div>
Created using
<a href="http://www.sphinx-doc.org/">Sphinx</a> 7.3.7.
<a href="http://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
and
<a href="https://github.com/bashtage/sphinx-material/">Material for
Sphinx</a>
Expand Down
26 changes: 13 additions & 13 deletions tutorials/01_introduction/tutorial_plot_boundaries_1d_dolfinx.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

50 changes: 25 additions & 25 deletions tutorials/01_introduction/tutorial_plot_boundaries_2d_dolfinx.html

Large diffs are not rendered by default.

Loading

0 comments on commit 71d33a2

Please sign in to comment.