mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-27 03:15:21 +00:00
2319124ff6
Experiment with Properdocs as a substitute for the troubled Mkdocs package. Alternate approach to PR #4971. Also add javascript for copy-to-clipboard functionality for readthedocs and mkdocs themes. A little less aesthetic than material themes, but it should work. Still unable to add dark mode to readthedocs theme.
6 lines
169 B
JavaScript
6 lines
169 B
JavaScript
document.addEventListener("DOMContentLoaded", function() {
|
|
document.querySelectorAll("table").forEach(function(table) {
|
|
table.classList.add("docutils");
|
|
});
|
|
});
|