1
0
mirror of https://github.com/0rangebananaspy/authelia.git synced 2024-09-14 22:47:21 +07:00
authelia/docs/assets/js/katex.js
James Elliott b2c60ef898
feat: major documentation refresh ()
This marks the launch of the new documentation website.
2022-06-15 17:51:47 +10:00

11 lines
329 B
JavaScript

document.addEventListener('DOMContentLoaded', function() {
renderMathInElement(document.body, {
delimiters: [
{left: '$$', right: '$$', display: true},
{left: '$', right: '$', display: false},
{left: '\\(', right: '\\)', display: false},
{left: '\\[', right: '\\]', display: true},
],
});
});