G
gillian
e506d26450
Some checks failed
Build Sphinx Docs Set / Build Docs (pull_request) Successful in 19s
Test with tox / Test with tox (3.11) (pull_request) Failing after 17s
Test with tox / Test with tox (3.12) (pull_request) Failing after 16s
Test with tox / Test with tox (3.10) (pull_request) Failing after 33s
Build Project / Build Project (3.10) (pull_request) Successful in 1m5s
Build Project / Build Project (3.12) (pull_request) Successful in 1m4s
Build Project / Build Project (3.11) (pull_request) Successful in 1m6s
covering installation, commands, YAML config patterns, and a cheat sheet. Adds custom CSS/JS for heading colours, warning admonition styling, code block colours, and ria command highlighting. Fixes .gitignore to exclude docs/_build/.
9 lines
296 B
JavaScript
9 lines
296 B
JavaScript
document.addEventListener('DOMContentLoaded', function () {
|
|
document.querySelectorAll('.highlight pre').forEach(function (pre) {
|
|
pre.innerHTML = pre.innerHTML.replace(
|
|
/((?:^|\n|>))(ria)(?=[ \t]|<)/g,
|
|
'$1<span class="ria-cmd">$2</span>'
|
|
);
|
|
});
|
|
});
|