Glen Whitney
b1203327ad
The mechanism here is to shadow a specified `custom.theme_dir` in the generated docs directory, and then ignore generated files therein (since they will be being used by the theme to render the pages, and are not actually part of the documentation).
9 lines
195 B
JavaScript
9 lines
195 B
JavaScript
/*
|
|
* Assign 'docutils' class to tables so styling and
|
|
* JavaScript behavior is applied.
|
|
*
|
|
* https://github.com/mkdocs/mkdocs/issues/2028
|
|
*/
|
|
|
|
$('div.rst-content table').addClass('docutils');
|