Deployed 8d5b969 with MkDocs version: 1.6.1

This commit is contained in:
github-actions[bot] 2024-12-27 16:58:07 +00:00
parent 645d774cb2
commit f25ceda6d9
105 changed files with 1994 additions and 1214 deletions

19
assets/js/mathjax.js Normal file
View file

@ -0,0 +1,19 @@
window.MathJax = {
tex: {
inlineMath: [["\\(", "\\)"]],
displayMath: [["\\[", "\\]"]],
processEscapes: true,
processEnvironments: true
},
options: {
ignoreHtmlClass: ".*|",
processHtmlClass: "arithmatex"
}
};
document$.subscribe(() => {
MathJax.startup.output.clearCache()
MathJax.typesetClear()
MathJax.texReset()
MathJax.typesetPromise()
})

6
assets/js/tablesort.js Normal file
View file

@ -0,0 +1,6 @@
document$.subscribe(function() {
var tables = document.querySelectorAll("article table:not([class])")
tables.forEach(function(table) {
new Tablesort(table)
})
})

14
assets/js/typewriter.js Normal file
View file

@ -0,0 +1,14 @@
document$.subscribe(() => {
const instance = new Typewriter('#typewriter', {
strings: [
'Systemadministrator',
'Site Reliability Engineer',
'DevOps Engineer',
'IT Operations Engineer',
'Informationssicherheit',
'Datenschutz',
],
autoStart: true,
loop: true,
});
})