Skip to content

Commit

Permalink
Deployed 804dce3 to master with MkDocs 1.5.3 and mike 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 6, 2024
1 parent a32e76e commit 1963ea7
Show file tree
Hide file tree
Showing 74 changed files with 292 additions and 206 deletions.
2 changes: 1 addition & 1 deletion latest
6 changes: 3 additions & 3 deletions master/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@


<link rel="icon" href="/tablite/master/assets/images/favicon.png">
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.6">
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.7">



<title>Tablite</title>



<link rel="stylesheet" href="/tablite/master/assets/stylesheets/main.50c56a3b.min.css">
<link rel="stylesheet" href="/tablite/master/assets/stylesheets/main.f2e4d321.min.css">


<link rel="stylesheet" href="/tablite/master/assets/stylesheets/palette.06af60db.min.css">
Expand Down Expand Up @@ -1143,7 +1143,7 @@ <h1>404 - Not found</h1>
<script id="__config" type="application/json">{"base": "/tablite/master", "features": ["navigation.tabs", "navigation.tabs.sticky", "navigation.expand", "navigation.indexes", "navigation.top", "toc.follow", "search.suggest", "search.highlight"], "search": "/tablite/master/assets/javascripts/workers/search.b8dbb3d2.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": {"provider": "mike"}}</script>


<script src="/tablite/master/assets/javascripts/bundle.e1c3ead8.min.js"></script>
<script src="/tablite/master/assets/javascripts/bundle.caa56a14.min.js"></script>


</body>
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion master/assets/stylesheets/main.50c56a3b.min.css

This file was deleted.

1 change: 0 additions & 1 deletion master/assets/stylesheets/main.50c56a3b.min.css.map

This file was deleted.

1 change: 1 addition & 0 deletions master/assets/stylesheets/main.f2e4d321.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions master/assets/stylesheets/main.f2e4d321.min.css.map

Large diffs are not rendered by default.

41 changes: 37 additions & 4 deletions master/benchmarks/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@


<link rel="icon" href="../assets/images/favicon.png">
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.6">
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.7">



<title>Benchmarks - Tablite</title>



<link rel="stylesheet" href="../assets/stylesheets/main.50c56a3b.min.css">
<link rel="stylesheet" href="../assets/stylesheets/main.f2e4d321.min.css">


<link rel="stylesheet" href="../assets/stylesheets/palette.06af60db.min.css">
Expand Down Expand Up @@ -1808,7 +1808,8 @@ <h1>Benchmarks</h1>
let results = null;
let output = null;
try {
const { svg } = await mermaid.render(id, raw, el);
let { svg } = await mermaid.render(id, raw, el);
svg = cleanMermaidSvg(svg);
results = makeMermaidImage(svg);
output = document.createElement("figure");
results.map(output.appendChild, output);
Expand All @@ -1823,6 +1824,38 @@ <h1>Benchmarks</h1>
parent.appendChild(output);
}


/**
* Post-process to ensure mermaid diagrams contain only valid SVG and XHTML.
*/
function cleanMermaidSvg(svg) {
return svg.replace(RE_VOID_ELEMENT, replaceVoidElement);
}


/**
* A regular expression for all void elements, which may include attributes and
* a slash.
*
* @see https://developer.mozilla.org/en-US/docs/Glossary/Void_element
*
* Of these, only `<br>` is generated by Mermaid in place of `\n`,
* but _any_ "malformed" tag will break the SVG rendering entirely.
*/
const RE_VOID_ELEMENT =
/<\s*(area|base|br|col|embed|hr|img|input|link|meta|param|source|track|wbr)\s*([^>]*?)\s*>/gi;

/**
* Ensure a void element is closed with a slash, preserving any attributes.
*/
function replaceVoidElement(match, tag, rest) {
rest = rest.trim();
if (!rest.endsWith('/')) {
rest = `${rest} /`;
}
return `<${tag} ${rest}>`;
}

void Promise.all([...diagrams].map(renderOneMarmaid));
});
</script>
Expand Down Expand Up @@ -4330,7 +4363,7 @@ <h4 id="drop-duplicates">drop duplicates<a class="anchor-link" href="#drop-dupli
<script id="__config" type="application/json">{"base": "..", "features": ["navigation.tabs", "navigation.tabs.sticky", "navigation.expand", "navigation.indexes", "navigation.top", "toc.follow", "search.suggest", "search.highlight"], "search": "../assets/javascripts/workers/search.b8dbb3d2.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": {"provider": "mike"}}</script>


<script src="../assets/javascripts/bundle.e1c3ead8.min.js"></script>
<script src="../assets/javascripts/bundle.caa56a14.min.js"></script>


</body>
Expand Down
6 changes: 3 additions & 3 deletions master/changelog/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@


<link rel="icon" href="../assets/images/favicon.png">
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.6">
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.7">



<title>Changelog - Tablite</title>



<link rel="stylesheet" href="../assets/stylesheets/main.50c56a3b.min.css">
<link rel="stylesheet" href="../assets/stylesheets/main.f2e4d321.min.css">


<link rel="stylesheet" href="../assets/stylesheets/palette.06af60db.min.css">
Expand Down Expand Up @@ -1408,7 +1408,7 @@ <h1 id="changelog">Changelog</h1>
<script id="__config" type="application/json">{"base": "..", "features": ["navigation.tabs", "navigation.tabs.sticky", "navigation.expand", "navigation.indexes", "navigation.top", "toc.follow", "search.suggest", "search.highlight"], "search": "../assets/javascripts/workers/search.b8dbb3d2.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": {"provider": "mike"}}</script>


<script src="../assets/javascripts/bundle.e1c3ead8.min.js"></script>
<script src="../assets/javascripts/bundle.caa56a14.min.js"></script>


</body>
Expand Down
6 changes: 3 additions & 3 deletions master/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@


<link rel="icon" href="assets/images/favicon.png">
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.6">
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.7">



<title>Tablite - Tablite</title>



<link rel="stylesheet" href="assets/stylesheets/main.50c56a3b.min.css">
<link rel="stylesheet" href="assets/stylesheets/main.f2e4d321.min.css">


<link rel="stylesheet" href="assets/stylesheets/palette.06af60db.min.css">
Expand Down Expand Up @@ -1475,7 +1475,7 @@ <h2 id="credits"><a name="credits"></a>Credits</h2>
<script id="__config" type="application/json">{"base": ".", "features": ["navigation.tabs", "navigation.tabs.sticky", "navigation.expand", "navigation.indexes", "navigation.top", "toc.follow", "search.suggest", "search.highlight"], "search": "assets/javascripts/workers/search.b8dbb3d2.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": {"provider": "mike"}}</script>


<script src="assets/javascripts/bundle.e1c3ead8.min.js"></script>
<script src="assets/javascripts/bundle.caa56a14.min.js"></script>


</body>
Expand Down
6 changes: 3 additions & 3 deletions master/reference/_nimlite/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@


<link rel="icon" href="../../assets/images/favicon.png">
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.6">
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.7">



<title>nimlite - Tablite</title>



<link rel="stylesheet" href="../../assets/stylesheets/main.50c56a3b.min.css">
<link rel="stylesheet" href="../../assets/stylesheets/main.f2e4d321.min.css">


<link rel="stylesheet" href="../../assets/stylesheets/palette.06af60db.min.css">
Expand Down Expand Up @@ -1965,7 +1965,7 @@ <h6 id="tablite._nimlite.nimlite.text_reader_task" class="doc doc-heading">
<script id="__config" type="application/json">{"base": "../..", "features": ["navigation.tabs", "navigation.tabs.sticky", "navigation.expand", "navigation.indexes", "navigation.top", "toc.follow", "search.suggest", "search.highlight"], "search": "../../assets/javascripts/workers/search.b8dbb3d2.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": {"provider": "mike"}}</script>


<script src="../../assets/javascripts/bundle.e1c3ead8.min.js"></script>
<script src="../../assets/javascripts/bundle.caa56a14.min.js"></script>


</body>
Expand Down
Loading

0 comments on commit 1963ea7

Please sign in to comment.