-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed docs for version 1.0.0-DEV-5
- Loading branch information
1 parent
27c2059
commit db21c82
Showing
61 changed files
with
9,875 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
1,095 changes: 1,095 additions & 0 deletions
1,095
betonquestplus/docs/Documentation/CHANGELOG/index.html
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.button-list { | ||
width: 17em; | ||
margin: 0.5em; | ||
text-align: center; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.task { | ||
color: #00AB6C; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.md-grid { | ||
max-width: clamp(400px,80%,2048px); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
div.mermaid { | ||
text-align: center; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() | ||
}) |
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
3
betonquestplus/docs/assets/javascripts/bundle.ef312ba9.min.js
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
18 changes: 18 additions & 0 deletions
18
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.
Oops, something went wrong.
18 changes: 18 additions & 0 deletions
18
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.
Oops, something went wrong.
Oops, something went wrong.