Skip to content

Commit

Permalink
Deployed docs for version 1.0.0-DEV-5
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolf2323 authored and github-actions[bot] committed Dec 10, 2024
1 parent 27c2059 commit db21c82
Show file tree
Hide file tree
Showing 61 changed files with 9,875 additions and 0 deletions.
610 changes: 610 additions & 0 deletions betonquestplus/docs/404.html

Large diffs are not rendered by default.

1,095 changes: 1,095 additions & 0 deletions betonquestplus/docs/Documentation/CHANGELOG/index.html

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions betonquestplus/docs/_media/content/Home/waveDark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions betonquestplus/docs/_media/content/Home/waveWhite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions betonquestplus/docs/_media/content/linkExternalDark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions betonquestplus/docs/_media/content/linkExternalHover.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions betonquestplus/docs/_media/content/linkExternalWhite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions betonquestplus/docs/_webCode/css/button.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.button-list {
width: 17em;
margin: 0.5em;
text-align: center;
}
7 changes: 7 additions & 0 deletions betonquestplus/docs/_webCode/css/centered.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.centered {
display: flex;
align-items: center;
justify-content: center }
.centered p {
margin-right: 0;
margin-left: 0; }
3 changes: 3 additions & 0 deletions betonquestplus/docs/_webCode/css/coloredIcons.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.task {
color: #00AB6C;
}
3 changes: 3 additions & 0 deletions betonquestplus/docs/_webCode/css/contentAreaFullWidth.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.md-grid {
max-width: clamp(400px,80%,2048px);
}
15 changes: 15 additions & 0 deletions betonquestplus/docs/_webCode/css/externalLinkIcon.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
body .md-content__inner a.external-link:not(.md-button,.md-content__button,.noExternalLinkIcon) {
background-image: url("../../_media/content/linkExternalWhite.svg");
background-repeat: no-repeat;
background-position: top right;
padding-right: 0.7em;
background-size: 0.6em;

&[data-md-color-scheme="slate"] {
background-image: url("../../_media/content/linkExternalDark.svg");
}

&:hover {
background-image: url("../../_media/content/linkExternalHover.svg");
}
}
3 changes: 3 additions & 0 deletions betonquestplus/docs/_webCode/css/mermaidCentered.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
div.mermaid {
text-align: center;
}
17 changes: 17 additions & 0 deletions betonquestplus/docs/_webCode/js/copyLinkToClipboard.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
//mkdocs-material provided observable that is called when the page is fully loaded. Respects both default and "instant loading" of pages.
document$.subscribe(function () {
//Adds an EventListener to all "chain link" elements next to headings.
let links = document.getElementsByClassName("headerlink");
for (let i = 0; i < links.length; i++) {
links[i].addEventListener("click", onClick);
}

//Copies the current URL into the users clipboard.
//This needs to be delayed by a bit since the browser needs to update the URL before it's copied.
function onClick() {
setTimeout(() => {
let url = window.location.href;
navigator.clipboard.writeText(url);
}, 10);
}
});
6 changes: 6 additions & 0 deletions betonquestplus/docs/_webCode/js/copyrightYearUpdater.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
//mkdocs-material provided observable that is called when the page is fully loaded. Respects both default and "instant loading" of pages.
document$.subscribe(function () {
const copyrightElement = document.getElementById("bqCopyright");
const currentYear = new Date().getFullYear().toString();
copyrightElement.textContent = copyrightElement.textContent.replace("{CurrentYear}", currentYear);
});
9 changes: 9 additions & 0 deletions betonquestplus/docs/_webCode/js/externalLinkIcon.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const currentDomain = window.location.origin;
const links = document.querySelectorAll(".md-content__inner a");

links.forEach(link => {
const href = link.href;
if (!href.startsWith(currentDomain)) {
link.classList.add("external-link");
}
});
16 changes: 16 additions & 0 deletions betonquestplus/docs/_webCode/js/mathjax.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
window.MathJax = {
tex: {
inlineMath: [["\\(", "\\)"]],
displayMath: [["\\[", "\\]"]],
processEscapes: true,
processEnvironments: true
},
options: {
ignoreHtmlClass: ".*|",
processHtmlClass: "arithmatex"
}
};

document$.subscribe(() => {
MathJax.typesetPromise()
})
Binary file added betonquestplus/docs/assets/images/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions betonquestplus/docs/assets/javascripts/bundle.ef312ba9.min.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions betonquestplus/docs/assets/javascripts/lunr/min/lunr.da.min.js

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

18 changes: 18 additions & 0 deletions betonquestplus/docs/assets/javascripts/lunr/min/lunr.de.min.js

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

Loading

0 comments on commit db21c82

Please sign in to comment.