From: Colin Watson Date: Thu, 3 Oct 2024 14:57:58 +0000 (+0100) Subject: Merge commit '699abdd57242d33291a0ea4ee333c7d4de11a30c' X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~cjwatson/git?a=commitdiff_plain;h=7664990a5702523694174cb64c9723a0fdd96096;p=blog.git Merge commit '699abdd57242d33291a0ea4ee333c7d4de11a30c' --- 7664990a5702523694174cb64c9723a0fdd96096 diff --cc m.css/css/m-theme-light.css index a21896f3,00000000..71a9b4a8 mode 100644,000000..100644 --- a/m.css/css/m-theme-light.css +++ b/m.css/css/m-theme-light.css @@@ -1,159 -1,0 +1,160 @@@ +/* + This file is part of m.css. + - Copyright © 2017, 2018, 2019, 2020, 2021, 2022, 2023 ++ Copyright © 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 + Vladimír Vondruš ++ Copyright © 2019 Cris Luengo + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. +*/ + +:root { + /* Text properties */ + --font: 'Source Sans Pro', sans-serif; + --code-font: 'Source Code Pro', monospace; + --font-size: 16px; + --code-font-size: 0.9em; /* *not* rem, so it follows surrounding font size */ + --line-height: normal; + --paragraph-indent: 1.5rem; + --paragraph-align: justify; + --link-decoration: underline; + --link-decoration-nav: none; + --link-decoration-heading: none; + --nav-brand-case: uppercase; + --nav-menu-case: none; + --nav-heading-case: uppercase; + --nav-categories-case: lowercase; + --landing-header-case: lowercase; + --heading-font-weight: 600; + + /* Shapes */ + --border-radius: 0.2rem; + + /* Basics */ + --background-color: #ffffff; + --color: #000000; + --line-color: #f7e3db; + --link-color: #ea7944; + --link-active-color: #cb4b16; + --mark-color: #4c93d3; + --mark-background-color: #e6e69c; + --code-color: #5b5b5b; + --code-inverted-color: rgba(91, 91, 91, 0.33); + --console-color: var(--code-color); + --console-inverted-color: var(--code-inverted-color); + /* This is simply color-picked --code-note-background-color on top of + --background-color */ + --code-background-color: #fbf0ec; + --code-note-background-color: rgba(251, 240, 236, 0.5); + --console-background-color: #000000; + --button-background-color: #ffffff; + + /* Header */ + --header-border-width: 0.25rem 0 0 0; + --header-color: #000000; + --header-breadcrumb-color: #bdbdbd; /* same as --dim-color */ + --header-background-color: #ffffff; + --header-background-color-landing: rgba(255, 255, 255, 0.75); + --header-background-color-jumbo: rgba(255, 255, 255, 0.25); + --header-link-color: #000000; + --header-link-active-color: #cb4b16; + --header-link-current-color: #ea7944; + --header-link-active-background-color: #ffffff; + --header-link-active-background-color: rgba(255, 255, 255, 0.5); + + /* Footer */ + --footer-font-size: 0.85rem; + --footer-color: #7c7c7c; + --footer-background-color: #eeeeee; + --footer-link-color: #191919; + --footer-link-active-color: #494949; + + /* Cover image */ + --cover-image-background-color: #666666; + + /* Search (used only by m-documentation.css) */ + --search-overlay-color: var(--header-background-color-landing); + --search-background-color: var(--header-background-color); + + /* Article */ + --article-header-color: #7a7a7a; + --article-footer-color: #969696; + --article-heading-color: #cb4b16; + --article-heading-active-color: #802f0e; + + /* Right navigation panel */ + --navpanel-link-color: #292929; + --navpanel-link-active-color: #cb4b16; + + /* Plots */ + --plot-background-color: #fbf0ec; + --plot-error-color: #000000; + + /* Colored components */ + --default-color: #000000; + --default-link-active-color: #cb4b16; + --default-filled-color: #000000; + --default-filled-background-color: #fbf0ec; + --default-filled-link-color: #ea7944; + --default-filled-link-active-color: #cb4b16; + + --primary-color: #cb4b16; + --primary-link-active-color: #000000; + --primary-filled-color: #fbe4d9; + --primary-filled-background-color: #ef9069; + --primary-filled-link-color: #782f0d; + --primary-filled-link-active-color: #2f1205; + + --success-color: #31c25d; + --success-link-active-color: #dcf6e3; + --success-filled-color: #f4fcf6; + --success-filled-background-color: #4dd376; + --success-filled-link-color: #c5f2d1; + --success-filled-link-active-color: #dcf6e3; + + --warning-color: #c7cf2f; + --warning-link-active-color: #f6f6dc; + --warning-filled-color: #fcfcf4; + --warning-filled-background-color: #d1d34d; + --warning-filled-link-color: #f0f1c7; + --warning-filled-link-active-color: #f6f6dc; + + --danger-color: #f60000; + --danger-link-active-color: #f6dddc; + --danger-filled-color: #fdf3f3; + --danger-filled-background-color: #e23e3e; + --danger-filled-link-color: #f2c7c6; + --danger-filled-link-active-color: #f6dddc; + + --info-color: #2e7dc5; + --info-link-active-color: #c6ddf2; + --info-filled-color: #f4f8fc; + --info-filled-background-color: #4c93d3; + --info-filled-link-color: #c6ddf2; + --info-filled-link-active-color: #dbeaf7; + + --dim-color: #bdbdbd; + --dim-link-color: #c0c0c0; + --dim-link-active-color: #949494; + --dim-filled-color: #7c7c7c; + --dim-filled-background-color: #f1f1f1; + --dim-filled-link-color: #c0c0c0; + --dim-filled-link-active-color: #949494; + --dim-button-active-color: #c0c0c0; +} diff --cc m.css/documentation/templates/python/stub.pyi index 00000000,9431c0e7..9431c0e7 mode 000000,100644..100644 --- a/m.css/documentation/templates/python/stub.pyi +++ b/m.css/documentation/templates/python/stub.pyi diff --cc m.css/documentation/test_doxygen/compound_includes/namespaceContained-stupid.html index 00000000,01d6b3a6..01d6b3a6 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_includes/namespaceContained-stupid.html +++ b/m.css/documentation/test_doxygen/compound_includes/namespaceContained-stupid.html diff --cc m.css/documentation/test_doxygen/compound_includes/structSpreadClass-1818.html index 00000000,b66c90f3..b66c90f3 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_includes/structSpreadClass-1818.html +++ b/m.css/documentation/test_doxygen/compound_includes/structSpreadClass-1818.html diff --cc m.css/documentation/test_doxygen/compound_includes_disabled/namespaceContained-stupid.html index 00000000,044aeb3d..044aeb3d mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_includes_disabled/namespaceContained-stupid.html +++ b/m.css/documentation/test_doxygen/compound_includes_disabled/namespaceContained-stupid.html diff --cc m.css/documentation/test_doxygen/compound_includes_strip_from_path/Data_8h.html index 00000000,f294c287..f294c287 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_includes_strip_from_path/Data_8h.html +++ b/m.css/documentation/test_doxygen/compound_includes_strip_from_path/Data_8h.html diff --cc m.css/documentation/test_doxygen/compound_includes_strip_from_path/Doxyfile index 00000000,34154d6a..34154d6a mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_includes_strip_from_path/Doxyfile +++ b/m.css/documentation/test_doxygen/compound_includes_strip_from_path/Doxyfile diff --cc m.css/documentation/test_doxygen/compound_includes_strip_from_path/Library_8h.html index 00000000,452ad8d6..452ad8d6 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_includes_strip_from_path/Library_8h.html +++ b/m.css/documentation/test_doxygen/compound_includes_strip_from_path/Library_8h.html diff --cc m.css/documentation/test_doxygen/compound_includes_strip_from_path/classLibrary_1_1Class.html index 00000000,83ad07c1..83ad07c1 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_includes_strip_from_path/classLibrary_1_1Class.html +++ b/m.css/documentation/test_doxygen/compound_includes_strip_from_path/classLibrary_1_1Class.html diff --cc m.css/documentation/test_doxygen/compound_includes_strip_from_path/dir_d44c64559bbebec7f509842c48db8b23.html index 00000000,c607a75a..c607a75a mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_includes_strip_from_path/dir_d44c64559bbebec7f509842c48db8b23.html +++ b/m.css/documentation/test_doxygen/compound_includes_strip_from_path/dir_d44c64559bbebec7f509842c48db8b23.html diff --cc m.css/documentation/test_doxygen/compound_includes_strip_from_path/dir_f3b5534f769798fe34f6616e7fe90e4d.html index 00000000,20257997..20257997 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_includes_strip_from_path/dir_f3b5534f769798fe34f6616e7fe90e4d.html +++ b/m.css/documentation/test_doxygen/compound_includes_strip_from_path/dir_f3b5534f769798fe34f6616e7fe90e4d.html diff --cc m.css/documentation/test_doxygen/compound_includes_strip_from_path/example_8cpp.html index 00000000,031a9f54..031a9f54 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_includes_strip_from_path/example_8cpp.html +++ b/m.css/documentation/test_doxygen/compound_includes_strip_from_path/example_8cpp.html diff --cc m.css/documentation/test_doxygen/compound_includes_strip_from_path/files.html index 00000000,3c7306cc..3c7306cc mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_includes_strip_from_path/files.html +++ b/m.css/documentation/test_doxygen/compound_includes_strip_from_path/files.html diff --cc m.css/documentation/test_doxygen/compound_includes_strip_from_path/input.dox index 00000000,5a3b1318..5a3b1318 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_includes_strip_from_path/input.dox +++ b/m.css/documentation/test_doxygen/compound_includes_strip_from_path/input.dox diff --cc m.css/documentation/test_doxygen/compound_includes_strip_from_path/namespaceLibrary.html index 00000000,fd8827a6..fd8827a6 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_includes_strip_from_path/namespaceLibrary.html +++ b/m.css/documentation/test_doxygen/compound_includes_strip_from_path/namespaceLibrary.html diff --cc m.css/documentation/test_doxygen/compound_includes_strip_from_path/namespaceLibrary_1_1Helper.html index 00000000,72d60e61..72d60e61 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_includes_strip_from_path/namespaceLibrary_1_1Helper.html +++ b/m.css/documentation/test_doxygen/compound_includes_strip_from_path/namespaceLibrary_1_1Helper.html diff --cc m.css/documentation/test_doxygen/compound_includes_strip_from_path/project/examples/example.cpp index 00000000,0bf762ae..0bf762ae mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_includes_strip_from_path/project/examples/example.cpp +++ b/m.css/documentation/test_doxygen/compound_includes_strip_from_path/project/examples/example.cpp diff --cc m.css/documentation/test_doxygen/compound_includes_strip_from_path/project/include/Library/Data.h index 00000000,77e115c9..77e115c9 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_includes_strip_from_path/project/include/Library/Data.h +++ b/m.css/documentation/test_doxygen/compound_includes_strip_from_path/project/include/Library/Data.h diff --cc m.css/documentation/test_doxygen/compound_includes_strip_from_path/project/include/Library/Library.h index 00000000,fd1088cb..fd1088cb mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_includes_strip_from_path/project/include/Library/Library.h +++ b/m.css/documentation/test_doxygen/compound_includes_strip_from_path/project/include/Library/Library.h diff --cc m.css/documentation/test_doxygen/compound_includes_strip_from_path/structLibrary_1_1Struct.html index 00000000,7b28afdf..7b28afdf mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_includes_strip_from_path/structLibrary_1_1Struct.html +++ b/m.css/documentation/test_doxygen/compound_includes_strip_from_path/structLibrary_1_1Struct.html diff --cc m.css/documentation/test_doxygen/compound_inline_namespace/File_8h.html index 00000000,551cb520..551cb520 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_inline_namespace/File_8h.html +++ b/m.css/documentation/test_doxygen/compound_inline_namespace/File_8h.html diff --cc m.css/documentation/test_doxygen/compound_listing/Doxyfile-strip-from-path index 00000000,25a75dca..25a75dca mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_listing/Doxyfile-strip-from-path +++ b/m.css/documentation/test_doxygen/compound_listing/Doxyfile-strip-from-path diff --cc m.css/documentation/test_doxygen/compound_modules_in_namespace/file3_8h-stupid.html index 00000000,11a3fc90..11a3fc90 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_modules_in_namespace/file3_8h-stupid.html +++ b/m.css/documentation/test_doxygen/compound_modules_in_namespace/file3_8h-stupid.html diff --cc m.css/documentation/test_doxygen/compound_modules_in_namespace/namespaceNamespace-stupid.html index 00000000,3f1d12a7..3f1d12a7 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_modules_in_namespace/namespaceNamespace-stupid.html +++ b/m.css/documentation/test_doxygen/compound_modules_in_namespace/namespaceNamespace-stupid.html diff --cc m.css/documentation/test_doxygen/compound_no_full_path_names/doc/Doxyfile index 00000000,68aadcf4..68aadcf4 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_no_full_path_names/doc/Doxyfile +++ b/m.css/documentation/test_doxygen/compound_no_full_path_names/doc/Doxyfile diff --cc m.css/documentation/test_doxygen/compound_no_full_path_names/files.html index 00000000,4e07d8c6..4e07d8c6 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_no_full_path_names/files.html +++ b/m.css/documentation/test_doxygen/compound_no_full_path_names/files.html diff --cc m.css/documentation/test_doxygen/compound_no_full_path_names/project/directory/sub.h index 00000000,2d98ffa1..2d98ffa1 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_no_full_path_names/project/directory/sub.h +++ b/m.css/documentation/test_doxygen/compound_no_full_path_names/project/directory/sub.h diff --cc m.css/documentation/test_doxygen/compound_no_full_path_names/project/root.h index 00000000,793c3e70..793c3e70 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/compound_no_full_path_names/project/root.h +++ b/m.css/documentation/test_doxygen/compound_no_full_path_names/project/root.h diff --cc m.css/documentation/test_doxygen/contents_anchor_in_both_group_and_namespace/namespaceFoo-stupid.html index 00000000,aa4dd52b..aa4dd52b mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_anchor_in_both_group_and_namespace/namespaceFoo-stupid.html +++ b/m.css/documentation/test_doxygen/contents_anchor_in_both_group_and_namespace/namespaceFoo-stupid.html diff --cc m.css/documentation/test_doxygen/contents_autobrief_blockquote/File_8h-111.html index 00000000,65d2e34e..65d2e34e mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_autobrief_blockquote/File_8h-111.html +++ b/m.css/documentation/test_doxygen/contents_autobrief_blockquote/File_8h-111.html diff --cc m.css/documentation/test_doxygen/contents_blockquote/index-pygments29.html index 00000000,350ff819..350ff819 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_blockquote/index-pygments29.html +++ b/m.css/documentation/test_doxygen/contents_blockquote/index-pygments29.html diff --cc m.css/documentation/test_doxygen/contents_code/index-pygments29.html index 00000000,4d8ef825..4d8ef825 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_code/index-pygments29.html +++ b/m.css/documentation/test_doxygen/contents_code/index-pygments29.html diff --cc m.css/documentation/test_doxygen/contents_code/warnings-pygments29.html index 00000000,f578422a..f578422a mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_code/warnings-pygments29.html +++ b/m.css/documentation/test_doxygen/contents_code/warnings-pygments29.html diff --cc m.css/documentation/test_doxygen/contents_code_filters/index-pygments210.html index 00000000,c8d5dc86..c8d5dc86 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_code_filters/index-pygments210.html +++ b/m.css/documentation/test_doxygen/contents_code_filters/index-pygments210.html diff --cc m.css/documentation/test_doxygen/contents_code_language/index-pygments213.html index 00000000,164451ca..164451ca mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_code_language/index-pygments213.html +++ b/m.css/documentation/test_doxygen/contents_code_language/index-pygments213.html diff --cc m.css/documentation/test_doxygen/contents_code_language/index-pygments29.html index 00000000,a4609029..a4609029 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_code_language/index-pygments29.html +++ b/m.css/documentation/test_doxygen/contents_code_language/index-pygments29.html diff --cc m.css/documentation/test_doxygen/contents_custom/dot-2.html index 00000000,153e4ebf..153e4ebf mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_custom/dot-2.html +++ b/m.css/documentation/test_doxygen/contents_custom/dot-2.html diff --cc m.css/documentation/test_doxygen/contents_custom/index-pygments29.html index 00000000,d27e67f1..d27e67f1 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_custom/index-pygments29.html +++ b/m.css/documentation/test_doxygen/contents_custom/index-pygments29.html diff --cc m.css/documentation/test_doxygen/contents_dot/index-2.html index 00000000,7ebadebf..7ebadebf mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_dot/index-2.html +++ b/m.css/documentation/test_doxygen/contents_dot/index-2.html diff --cc m.css/documentation/test_doxygen/contents_html_escape/Doxyfile index 00000000,a511c1f6..a511c1f6 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_html_escape/Doxyfile +++ b/m.css/documentation/test_doxygen/contents_html_escape/Doxyfile diff --cc m.css/documentation/test_doxygen/contents_html_escape/Fi&le.h index 00000000,4f674599..4f674599 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_html_escape/Fi&le.h +++ b/m.css/documentation/test_doxygen/contents_html_escape/Fi&le.h diff --cc m.css/documentation/test_doxygen/contents_html_escape/Fi_6le_8h.html index 00000000,2a961c83..2a961c83 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_html_escape/Fi_6le_8h.html +++ b/m.css/documentation/test_doxygen/contents_html_escape/Fi_6le_8h.html diff --cc m.css/documentation/test_doxygen/contents_html_escape/annotated.html index 00000000,a82c6f7b..a82c6f7b mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_html_escape/annotated.html +++ b/m.css/documentation/test_doxygen/contents_html_escape/annotated.html diff --cc m.css/documentation/test_doxygen/contents_html_escape/files.html index 00000000,8d66fad8..8d66fad8 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_html_escape/files.html +++ b/m.css/documentation/test_doxygen/contents_html_escape/files.html diff --cc m.css/documentation/test_doxygen/contents_html_escape/page-1820.html index 00000000,e4b4bdc0..e4b4bdc0 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_html_escape/page-1820.html +++ b/m.css/documentation/test_doxygen/contents_html_escape/page-1820.html diff --cc m.css/documentation/test_doxygen/contents_html_escape/page.dox index 00000000,113cd8b7..113cd8b7 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_html_escape/page.dox +++ b/m.css/documentation/test_doxygen/contents_html_escape/page.dox diff --cc m.css/documentation/test_doxygen/contents_html_escape/page.html index 00000000,8e3cfa22..8e3cfa22 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_html_escape/page.html +++ b/m.css/documentation/test_doxygen/contents_html_escape/page.html diff --cc m.css/documentation/test_doxygen/contents_html_escape/pages.html index 00000000,c328f238..c328f238 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_html_escape/pages.html +++ b/m.css/documentation/test_doxygen/contents_html_escape/pages.html diff --cc m.css/documentation/test_doxygen/contents_html_escape/structClass.html index 00000000,c492ef9a..c492ef9a mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_html_escape/structClass.html +++ b/m.css/documentation/test_doxygen/contents_html_escape/structClass.html diff --cc m.css/documentation/test_doxygen/contents_html_escape/structSub_3_01char_00_01T_01_4.html index 00000000,849c147c..849c147c mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_html_escape/structSub_3_01char_00_01T_01_4.html +++ b/m.css/documentation/test_doxygen/contents_html_escape/structSub_3_01char_00_01T_01_4.html diff --cc m.css/documentation/test_doxygen/contents_html_escape/structSub_3_01char_00_01T_01_4_1_1Nested.html index 00000000,a95dec43..a95dec43 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_html_escape/structSub_3_01char_00_01T_01_4_1_1Nested.html +++ b/m.css/documentation/test_doxygen/contents_html_escape/structSub_3_01char_00_01T_01_4_1_1Nested.html diff --cc m.css/documentation/test_doxygen/contents_html_escape/tiny.png index 00000000,79abd3ca..79abd3ca mode 000000,120000..120000 --- a/m.css/documentation/test_doxygen/contents_html_escape/tiny.png +++ b/m.css/documentation/test_doxygen/contents_html_escape/tiny.png diff --cc m.css/documentation/test_doxygen/contents_image/index-1820.html index 00000000,52b00053..52b00053 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_image/index-1820.html +++ b/m.css/documentation/test_doxygen/contents_image/index-1820.html diff --cc m.css/documentation/test_doxygen/contents_math_cached/math-197.html index 00000000,26b4db20..26b4db20 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_math_cached/math-197.html +++ b/m.css/documentation/test_doxygen/contents_math_cached/math-197.html diff --cc m.css/documentation/test_doxygen/contents_math_code_fallback/Doxyfile index 00000000,fa824055..fa824055 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_math_code_fallback/Doxyfile +++ b/m.css/documentation/test_doxygen/contents_math_code_fallback/Doxyfile diff --cc m.css/documentation/test_doxygen/contents_math_code_fallback/index-191.html index 00000000,5b84e7a5..5b84e7a5 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_math_code_fallback/index-191.html +++ b/m.css/documentation/test_doxygen/contents_math_code_fallback/index-191.html diff --cc m.css/documentation/test_doxygen/contents_math_code_fallback/index.html index 00000000,f4a0fcef..f4a0fcef mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_math_code_fallback/index.html +++ b/m.css/documentation/test_doxygen/contents_math_code_fallback/index.html diff --cc m.css/documentation/test_doxygen/contents_math_code_fallback/input.dox index 00000000,a6be00a8..a6be00a8 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_math_code_fallback/input.dox +++ b/m.css/documentation/test_doxygen/contents_math_code_fallback/input.dox diff --cc m.css/documentation/test_doxygen/contents_sections_headings/Warnings_8h-110.html index 00000000,67834d3d..67834d3d mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_sections_headings/Warnings_8h-110.html +++ b/m.css/documentation/test_doxygen/contents_sections_headings/Warnings_8h-110.html diff --cc m.css/documentation/test_doxygen/contents_sections_headings/warnings-110.html index 00000000,b36b4608..b36b4608 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_sections_headings/warnings-110.html +++ b/m.css/documentation/test_doxygen/contents_sections_headings/warnings-110.html diff --cc m.css/documentation/test_doxygen/contents_tagfile/index-pygments29.html index 00000000,60048eb3..60048eb3 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_tagfile/index-pygments29.html +++ b/m.css/documentation/test_doxygen/contents_tagfile/index-pygments29.html diff --cc m.css/documentation/test_doxygen/contents_typography/indexpage_1817.xml index 00000000,e4487105..e4487105 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/contents_typography/indexpage_1817.xml +++ b/m.css/documentation/test_doxygen/contents_typography/indexpage_1817.xml diff --cc m.css/documentation/test_doxygen/example/path-prefix_2CMakeLists_8txt-example-pygments210.html index 00000000,65d0cebc..65d0cebc mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/example/path-prefix_2CMakeLists_8txt-example-pygments210.html +++ b/m.css/documentation/test_doxygen/example/path-prefix_2CMakeLists_8txt-example-pygments210.html diff --cc m.css/documentation/test_doxygen/example/path-prefix_2main_8cpp-example-pygments29.html index 00000000,948e5bf0..948e5bf0 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/example/path-prefix_2main_8cpp-example-pygments29.html +++ b/m.css/documentation/test_doxygen/example/path-prefix_2main_8cpp-example-pygments29.html diff --cc m.css/documentation/test_doxygen/ignored_languages/Doxyfile index 00000000,5d5a7d37..5d5a7d37 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/ignored_languages/Doxyfile +++ b/m.css/documentation/test_doxygen/ignored_languages/Doxyfile diff --cc m.css/documentation/test_doxygen/ignored_languages/file.c index 00000000,c22bc1df..c22bc1df mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/ignored_languages/file.c +++ b/m.css/documentation/test_doxygen/ignored_languages/file.c diff --cc m.css/documentation/test_doxygen/ignored_languages/file.cs index 00000000,72766808..72766808 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/ignored_languages/file.cs +++ b/m.css/documentation/test_doxygen/ignored_languages/file.cs diff --cc m.css/documentation/test_doxygen/ignored_languages/file.java index 00000000,654be44a..654be44a mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/ignored_languages/file.java +++ b/m.css/documentation/test_doxygen/ignored_languages/file.java diff --cc m.css/documentation/test_doxygen/ignored_languages/file.py index 00000000,2feed947..2feed947 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/ignored_languages/file.py +++ b/m.css/documentation/test_doxygen/ignored_languages/file.py diff --cc m.css/documentation/test_doxygen/ignored_languages/file_8c.html index 00000000,fa99fe2d..fa99fe2d mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/ignored_languages/file_8c.html +++ b/m.css/documentation/test_doxygen/ignored_languages/file_8c.html diff --cc m.css/documentation/test_doxygen/undocumented/File_8h-stupid.html index 00000000,4b7df5c2..4b7df5c2 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/undocumented/File_8h-stupid.html +++ b/m.css/documentation/test_doxygen/undocumented/File_8h-stupid.html diff --cc m.css/documentation/test_doxygen/undocumented/namespaceNamespace-stupid.html index 00000000,c9dea034..c9dea034 mode 000000,100644..100644 --- a/m.css/documentation/test_doxygen/undocumented/namespaceNamespace-stupid.html +++ b/m.css/documentation/test_doxygen/undocumented/namespaceNamespace-stupid.html diff --cc m.css/documentation/test_python/content_html_escape/content_html_escape.Class.html index 00000000,4d7e0b77..4d7e0b77 mode 000000,100644..100644 --- a/m.css/documentation/test_python/content_html_escape/content_html_escape.Class.html +++ b/m.css/documentation/test_python/content_html_escape/content_html_escape.Class.html diff --cc m.css/documentation/test_python/content_html_escape/content_html_escape.html index 00000000,5d63da28..5d63da28 mode 000000,100644..100644 --- a/m.css/documentation/test_python/content_html_escape/content_html_escape.html +++ b/m.css/documentation/test_python/content_html_escape/content_html_escape.html diff --cc m.css/documentation/test_python/content_html_escape/content_html_escape.pybind.html index 00000000,12f29771..12f29771 mode 000000,100644..100644 --- a/m.css/documentation/test_python/content_html_escape/content_html_escape.pybind.html +++ b/m.css/documentation/test_python/content_html_escape/content_html_escape.pybind.html diff --cc m.css/documentation/test_python/content_html_escape/content_html_escape/__init__.py index 00000000,d51eedce..d51eedce mode 000000,100644..100644 --- a/m.css/documentation/test_python/content_html_escape/content_html_escape/__init__.py +++ b/m.css/documentation/test_python/content_html_escape/content_html_escape/__init__.py diff --cc m.css/documentation/test_python/content_html_escape/content_html_escape/pybind.cpp index 00000000,9c6df58d..9c6df58d mode 000000,100644..100644 --- a/m.css/documentation/test_python/content_html_escape/content_html_escape/pybind.cpp +++ b/m.css/documentation/test_python/content_html_escape/content_html_escape/pybind.cpp diff --cc m.css/documentation/test_python/content_html_escape/page.html index 00000000,d3c61966..d3c61966 mode 000000,100644..100644 --- a/m.css/documentation/test_python/content_html_escape/page.html +++ b/m.css/documentation/test_python/content_html_escape/page.html diff --cc m.css/documentation/test_python/content_html_escape/page.rst index 00000000,22a87341..22a87341 mode 000000,100644..100644 --- a/m.css/documentation/test_python/content_html_escape/page.rst +++ b/m.css/documentation/test_python/content_html_escape/page.rst diff --cc m.css/documentation/test_python/content_html_escape/pages.html index 00000000,e52b6823..e52b6823 mode 000000,100644..100644 --- a/m.css/documentation/test_python/content_html_escape/pages.html +++ b/m.css/documentation/test_python/content_html_escape/pages.html diff --cc m.css/documentation/test_python/content_html_escape/stubs/content_html_escape/__init__.pyi index 00000000,b2fd29b4..b2fd29b4 mode 000000,100644..100644 --- a/m.css/documentation/test_python/content_html_escape/stubs/content_html_escape/__init__.pyi +++ b/m.css/documentation/test_python/content_html_escape/stubs/content_html_escape/__init__.pyi diff --cc m.css/documentation/test_python/content_html_escape/stubs/content_html_escape/pybind.pyi index 00000000,55f92fe7..55f92fe7 mode 000000,100644..100644 --- a/m.css/documentation/test_python/content_html_escape/stubs/content_html_escape/pybind.pyi +++ b/m.css/documentation/test_python/content_html_escape/stubs/content_html_escape/pybind.pyi diff --cc m.css/documentation/test_python/inspect_annotations/stubs/inspect_annotations-py36.pyi index 00000000,9868aabb..9868aabb mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_annotations/stubs/inspect_annotations-py36.pyi +++ b/m.css/documentation/test_python/inspect_annotations/stubs/inspect_annotations-py36.pyi diff --cc m.css/documentation/test_python/inspect_annotations/stubs/inspect_annotations-py37+38.pyi index 00000000,7a8d4203..7a8d4203 mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_annotations/stubs/inspect_annotations-py37+38.pyi +++ b/m.css/documentation/test_python/inspect_annotations/stubs/inspect_annotations-py37+38.pyi diff --cc m.css/documentation/test_python/inspect_annotations/stubs/inspect_annotations.pyi index 00000000,42c2f30b..42c2f30b mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_annotations/stubs/inspect_annotations.pyi +++ b/m.css/documentation/test_python/inspect_annotations/stubs/inspect_annotations.pyi diff --cc m.css/documentation/test_python/inspect_attrs/stubs/inspect_attrs.pyi index 00000000,9acd8843..9acd8843 mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_attrs/stubs/inspect_attrs.pyi +++ b/m.css/documentation/test_python/inspect_attrs/stubs/inspect_attrs.pyi diff --cc m.css/documentation/test_python/inspect_builtin/docs.rst index 00000000,48e606ec..48e606ec mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_builtin/docs.rst +++ b/m.css/documentation/test_python/inspect_builtin/docs.rst diff --cc m.css/documentation/test_python/inspect_builtin/inspect_builtin.BaseException-310.html index 00000000,2514edc4..2514edc4 mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_builtin/inspect_builtin.BaseException-310.html +++ b/m.css/documentation/test_python/inspect_builtin/inspect_builtin.BaseException-310.html diff --cc m.css/documentation/test_python/inspect_builtin/inspect_builtin.BaseException.html index 00000000,7bee1af8..7bee1af8 mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_builtin/inspect_builtin.BaseException.html +++ b/m.css/documentation/test_python/inspect_builtin/inspect_builtin.BaseException.html diff --cc m.css/documentation/test_python/inspect_builtin/inspect_builtin.py index 00000000,e7fe13e1..e7fe13e1 mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_builtin/inspect_builtin.py +++ b/m.css/documentation/test_python/inspect_builtin/inspect_builtin.py diff --cc m.css/documentation/test_python/inspect_builtin/stubs/inspect_builtin-310.pyi index 00000000,35fcc671..35fcc671 mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_builtin/stubs/inspect_builtin-310.pyi +++ b/m.css/documentation/test_python/inspect_builtin/stubs/inspect_builtin-310.pyi diff --cc m.css/documentation/test_python/inspect_builtin/stubs/inspect_builtin-36.pyi index 00000000,e7adbb7f..e7adbb7f mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_builtin/stubs/inspect_builtin-36.pyi +++ b/m.css/documentation/test_python/inspect_builtin/stubs/inspect_builtin-36.pyi diff --cc m.css/documentation/test_python/inspect_builtin/stubs/inspect_builtin.pyi index 00000000,acd0dd30..acd0dd30 mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_builtin/stubs/inspect_builtin.pyi +++ b/m.css/documentation/test_python/inspect_builtin/stubs/inspect_builtin.pyi diff --cc m.css/documentation/test_python/inspect_name_mapping/stubs/inspect_name_mapping/__init__.py index 00000000,d09cdbc1..d09cdbc1 mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_name_mapping/stubs/inspect_name_mapping/__init__.py +++ b/m.css/documentation/test_python/inspect_name_mapping/stubs/inspect_name_mapping/__init__.py diff --cc m.css/documentation/test_python/inspect_name_mapping/stubs/inspect_name_mapping/submodule.py index 00000000,1b9d4686..1b9d4686 mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_name_mapping/stubs/inspect_name_mapping/submodule.py +++ b/m.css/documentation/test_python/inspect_name_mapping/stubs/inspect_name_mapping/submodule.py diff --cc m.css/documentation/test_python/inspect_string/inspect_string.DerivedException-310.html index 00000000,28d58e3b..28d58e3b mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_string/inspect_string.DerivedException-310.html +++ b/m.css/documentation/test_python/inspect_string/inspect_string.DerivedException-310.html diff --cc m.css/documentation/test_python/inspect_string/inspect_string.subpackage.html index 00000000,01330eab..01330eab mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_string/inspect_string.subpackage.html +++ b/m.css/documentation/test_python/inspect_string/inspect_string.subpackage.html diff --cc m.css/documentation/test_python/inspect_string/inspect_string.subpackage.inner.html index 00000000,7de76e94..7de76e94 mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_string/inspect_string.subpackage.inner.html +++ b/m.css/documentation/test_python/inspect_string/inspect_string.subpackage.inner.html diff --cc m.css/documentation/test_python/inspect_string/inspect_string/subpackage/inner.py index 00000000,51546607..51546607 mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_string/inspect_string/subpackage/inner.py +++ b/m.css/documentation/test_python/inspect_string/inspect_string/subpackage/inner.py diff --cc m.css/documentation/test_python/inspect_string/stubs/inspect_string/__init__-310.pyi index 00000000,a23171dd..a23171dd mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_string/stubs/inspect_string/__init__-310.pyi +++ b/m.css/documentation/test_python/inspect_string/stubs/inspect_string/__init__-310.pyi diff --cc m.css/documentation/test_python/inspect_string/stubs/inspect_string/__init__.pyi index 00000000,0a8cb2d1..0a8cb2d1 mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_string/stubs/inspect_string/__init__.pyi +++ b/m.css/documentation/test_python/inspect_string/stubs/inspect_string/__init__.pyi diff --cc m.css/documentation/test_python/inspect_string/stubs/inspect_string/another_module.pyi index 00000000,e69de29b..e69de29b mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_string/stubs/inspect_string/another_module.pyi +++ b/m.css/documentation/test_python/inspect_string/stubs/inspect_string/another_module.pyi diff --cc m.css/documentation/test_python/inspect_string/stubs/inspect_string/subpackage/inner.pyi index 00000000,e69de29b..e69de29b mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_string/stubs/inspect_string/subpackage/inner.pyi +++ b/m.css/documentation/test_python/inspect_string/stubs/inspect_string/subpackage/inner.pyi diff --cc m.css/documentation/test_python/inspect_value_formatting/stubs/inspect_value_formatting.pyi index 00000000,2e7a05dc..2e7a05dc mode 000000,100644..100644 --- a/m.css/documentation/test_python/inspect_value_formatting/stubs/inspect_value_formatting.pyi +++ b/m.css/documentation/test_python/inspect_value_formatting/stubs/inspect_value_formatting.pyi diff --cc m.css/documentation/test_python/page_plugins/dot-2.html index 00000000,289e5ab7..289e5ab7 mode 000000,100644..100644 --- a/m.css/documentation/test_python/page_plugins/dot-2.html +++ b/m.css/documentation/test_python/page_plugins/dot-2.html diff --cc m.css/documentation/test_python/pybind_enums/stubs/pybind_enums.pyi index 00000000,67d751aa..67d751aa mode 000000,100644..100644 --- a/m.css/documentation/test_python/pybind_enums/stubs/pybind_enums.pyi +++ b/m.css/documentation/test_python/pybind_enums/stubs/pybind_enums.pyi diff --cc m.css/documentation/test_python/pybind_name_mapping/stubs/pybind_name_mapping/__init__.py index 00000000,30aa5541..30aa5541 mode 000000,100644..100644 --- a/m.css/documentation/test_python/pybind_name_mapping/stubs/pybind_name_mapping/__init__.py +++ b/m.css/documentation/test_python/pybind_name_mapping/stubs/pybind_name_mapping/__init__.py diff --cc m.css/documentation/test_python/pybind_name_mapping/stubs/pybind_name_mapping/submodule.py index 00000000,689bcc6f..689bcc6f mode 000000,100644..100644 --- a/m.css/documentation/test_python/pybind_name_mapping/stubs/pybind_name_mapping/submodule.py +++ b/m.css/documentation/test_python/pybind_name_mapping/stubs/pybind_name_mapping/submodule.py diff --cc m.css/documentation/test_python/pybind_signatures/stubs/pybind_signatures/__init__-pybind22.pyi index 00000000,a9621047..a9621047 mode 000000,100644..100644 --- a/m.css/documentation/test_python/pybind_signatures/stubs/pybind_signatures/__init__-pybind22.pyi +++ b/m.css/documentation/test_python/pybind_signatures/stubs/pybind_signatures/__init__-pybind22.pyi diff --cc m.css/documentation/test_python/pybind_signatures/stubs/pybind_signatures/__init__-pybind25.pyi index 00000000,dc12283c..dc12283c mode 000000,100644..100644 --- a/m.css/documentation/test_python/pybind_signatures/stubs/pybind_signatures/__init__-pybind25.pyi +++ b/m.css/documentation/test_python/pybind_signatures/stubs/pybind_signatures/__init__-pybind25.pyi diff --cc m.css/documentation/test_python/pybind_signatures/stubs/pybind_signatures/__init__.pyi index 00000000,ce8bfcb6..ce8bfcb6 mode 000000,100644..100644 --- a/m.css/documentation/test_python/pybind_signatures/stubs/pybind_signatures/__init__.pyi +++ b/m.css/documentation/test_python/pybind_signatures/stubs/pybind_signatures/__init__.pyi diff --cc m.css/documentation/test_python/pybind_signatures/stubs/pybind_signatures/just_overloads.pyi index 00000000,646e5d41..646e5d41 mode 000000,100644..100644 --- a/m.css/documentation/test_python/pybind_signatures/stubs/pybind_signatures/just_overloads.pyi +++ b/m.css/documentation/test_python/pybind_signatures/stubs/pybind_signatures/just_overloads.pyi diff --cc m.css/documentation/test_python/stubs_custom_header_extension/stubs/stubs_custom_header_extension/__init__.custom.py index 00000000,c58b9044..c58b9044 mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_custom_header_extension/stubs/stubs_custom_header_extension/__init__.custom.py +++ b/m.css/documentation/test_python/stubs_custom_header_extension/stubs/stubs_custom_header_extension/__init__.custom.py diff --cc m.css/documentation/test_python/stubs_custom_header_extension/stubs/stubs_custom_header_extension/sub.custom.py index 00000000,c58b9044..c58b9044 mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_custom_header_extension/stubs/stubs_custom_header_extension/sub.custom.py +++ b/m.css/documentation/test_python/stubs_custom_header_extension/stubs/stubs_custom_header_extension/sub.custom.py diff --cc m.css/documentation/test_python/stubs_custom_header_extension/stubs_custom_header_extension/__init__.py index 00000000,9ded2a2e..9ded2a2e mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_custom_header_extension/stubs_custom_header_extension/__init__.py +++ b/m.css/documentation/test_python/stubs_custom_header_extension/stubs_custom_header_extension/__init__.py diff --cc m.css/documentation/test_python/stubs_custom_header_extension/stubs_custom_header_extension/sub.py index 00000000,e69de29b..e69de29b mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_custom_header_extension/stubs_custom_header_extension/sub.py +++ b/m.css/documentation/test_python/stubs_custom_header_extension/stubs_custom_header_extension/sub.py diff --cc m.css/documentation/test_python/stubs_module_dependencies/another_module.py index 00000000,d95cb049..d95cb049 mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_module_dependencies/another_module.py +++ b/m.css/documentation/test_python/stubs_module_dependencies/another_module.py diff --cc m.css/documentation/test_python/stubs_module_dependencies/stubs/stubs_module_dependencies/__init__.py index 00000000,c98490cc..c98490cc mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_module_dependencies/stubs/stubs_module_dependencies/__init__.py +++ b/m.css/documentation/test_python/stubs_module_dependencies/stubs/stubs_module_dependencies/__init__.py diff --cc m.css/documentation/test_python/stubs_module_dependencies/stubs/stubs_module_dependencies/pybind/__init__.py index 00000000,11437d0d..11437d0d mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_module_dependencies/stubs/stubs_module_dependencies/pybind/__init__.py +++ b/m.css/documentation/test_python/stubs_module_dependencies/stubs/stubs_module_dependencies/pybind/__init__.py diff --cc m.css/documentation/test_python/stubs_module_dependencies/stubs/stubs_module_dependencies/sub/inner.py index 00000000,0ae63444..0ae63444 mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_module_dependencies/stubs/stubs_module_dependencies/sub/inner.py +++ b/m.css/documentation/test_python/stubs_module_dependencies/stubs/stubs_module_dependencies/sub/inner.py diff --cc m.css/documentation/test_python/stubs_module_dependencies/stubs_module_dependencies/__init__.py index 00000000,b3a7497d..b3a7497d mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_module_dependencies/stubs_module_dependencies/__init__.py +++ b/m.css/documentation/test_python/stubs_module_dependencies/stubs_module_dependencies/__init__.py diff --cc m.css/documentation/test_python/stubs_module_dependencies/stubs_module_dependencies/pybind.cpp index 00000000,efe84f57..efe84f57 mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_module_dependencies/stubs_module_dependencies/pybind.cpp +++ b/m.css/documentation/test_python/stubs_module_dependencies/stubs_module_dependencies/pybind.cpp diff --cc m.css/documentation/test_python/stubs_module_dependencies/stubs_module_dependencies/sub/__init__.py index 00000000,475004c0..475004c0 mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_module_dependencies/stubs_module_dependencies/sub/__init__.py +++ b/m.css/documentation/test_python/stubs_module_dependencies/stubs_module_dependencies/sub/__init__.py diff --cc m.css/documentation/test_python/stubs_module_dependencies/stubs_module_dependencies/sub/inner.py index 00000000,cf441e76..cf441e76 mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_module_dependencies/stubs_module_dependencies/sub/inner.py +++ b/m.css/documentation/test_python/stubs_module_dependencies/stubs_module_dependencies/sub/inner.py diff --cc m.css/documentation/test_python/stubs_module_dependencies/unparsed_enum_module.py index 00000000,5cc3cd60..5cc3cd60 mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_module_dependencies/unparsed_enum_module.py +++ b/m.css/documentation/test_python/stubs_module_dependencies/unparsed_enum_module.py diff --cc m.css/documentation/test_python/stubs_module_dependencies/unparsed_module.py index 00000000,66fbf525..66fbf525 mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_module_dependencies/unparsed_module.py +++ b/m.css/documentation/test_python/stubs_module_dependencies/unparsed_module.py diff --cc m.css/documentation/test_python/stubs_nested_classes/stubs_nested_classes.Class.Inner.html index 00000000,938f17a9..938f17a9 mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_nested_classes/stubs_nested_classes.Class.Inner.html +++ b/m.css/documentation/test_python/stubs_nested_classes/stubs_nested_classes.Class.Inner.html diff --cc m.css/documentation/test_python/stubs_nested_classes/stubs_nested_classes.Class.InnerAnother.AndAnother.YetAnother.html index 00000000,bdccf3a2..bdccf3a2 mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_nested_classes/stubs_nested_classes.Class.InnerAnother.AndAnother.YetAnother.html +++ b/m.css/documentation/test_python/stubs_nested_classes/stubs_nested_classes.Class.InnerAnother.AndAnother.YetAnother.html diff --cc m.css/documentation/test_python/stubs_nested_classes/stubs_nested_classes.Class.InnerAnother.AndAnother.html index 00000000,5d1627f7..5d1627f7 mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_nested_classes/stubs_nested_classes.Class.InnerAnother.AndAnother.html +++ b/m.css/documentation/test_python/stubs_nested_classes/stubs_nested_classes.Class.InnerAnother.AndAnother.html diff --cc m.css/documentation/test_python/stubs_nested_classes/stubs_nested_classes.Class.html index 00000000,cdd4c422..cdd4c422 mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_nested_classes/stubs_nested_classes.Class.html +++ b/m.css/documentation/test_python/stubs_nested_classes/stubs_nested_classes.Class.html diff --cc m.css/documentation/test_python/stubs_nested_classes/stubs_nested_classes.html index 00000000,6db3268b..6db3268b mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_nested_classes/stubs_nested_classes.html +++ b/m.css/documentation/test_python/stubs_nested_classes/stubs_nested_classes.html diff --cc m.css/documentation/test_python/stubs_nested_classes/stubs_nested_classes.py index 00000000,e2820d05..e2820d05 mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_nested_classes/stubs_nested_classes.py +++ b/m.css/documentation/test_python/stubs_nested_classes/stubs_nested_classes.py diff --cc m.css/documentation/test_python/stubs_spacing/empty_module.py index 00000000,e69de29b..e69de29b mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_spacing/empty_module.py +++ b/m.css/documentation/test_python/stubs_spacing/empty_module.py diff --cc m.css/documentation/test_python/stubs_spacing/stubs_spacing.py index 00000000,f49e1a31..f49e1a31 mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_spacing/stubs_spacing.py +++ b/m.css/documentation/test_python/stubs_spacing/stubs_spacing.py diff --cc m.css/documentation/test_python/stubs_spacing/stubs_spacing.rst index 00000000,8b137891..8b137891 mode 000000,100644..100644 --- a/m.css/documentation/test_python/stubs_spacing/stubs_spacing.rst +++ b/m.css/documentation/test_python/stubs_spacing/stubs_spacing.rst diff --cc m.css/documentation/test_python/test_stubs.py index 00000000,e84e04cb..e84e04cb mode 000000,100644..100644 --- a/m.css/documentation/test_python/test_stubs.py +++ b/m.css/documentation/test_python/test_stubs.py diff --cc m.css/plugins/m/test/code/ansi.html index 00000000,541239a1..541239a1 mode 000000,100644..100644 --- a/m.css/plugins/m/test/code/ansi.html +++ b/m.css/plugins/m/test/code/ansi.html diff --cc m.css/plugins/m/test/code/ansi.rst index 00000000,aeffd366..aeffd366 mode 000000,100644..100644 --- a/m.css/plugins/m/test/code/ansi.rst +++ b/m.css/plugins/m/test/code/ansi.rst diff --cc m.css/plugins/m/test/code/page-210.html index 00000000,779360cd..779360cd mode 000000,100644..100644 --- a/m.css/plugins/m/test/code/page-210.html +++ b/m.css/plugins/m/test/code/page-210.html diff --cc m.css/plugins/m/test/code/page-29.html index 00000000,56c8ed93..56c8ed93 mode 000000,100644..100644 --- a/m.css/plugins/m/test/code/page-29.html +++ b/m.css/plugins/m/test/code/page-29.html diff --cc m.css/plugins/m/test/dot/page-2.html index 00000000,32c7f6ab..32c7f6ab mode 000000,100644..100644 --- a/m.css/plugins/m/test/dot/page-2.html +++ b/m.css/plugins/m/test/dot/page-2.html diff --cc m.css/plugins/m/test/plots/page-35.html index 00000000,b01ee253..b01ee253 mode 000000,100644..100644 --- a/m.css/plugins/m/test/plots/page-35.html +++ b/m.css/plugins/m/test/plots/page-35.html diff --cc m.css/plugins/m/test/qr/page-73.html index 00000000,4cb9e2c6..4cb9e2c6 mode 000000,100644..100644 --- a/m.css/plugins/m/test/qr/page-73.html +++ b/m.css/plugins/m/test/qr/page-73.html diff --cc m.css/plugins/m/test/test.py index 00000000,105bac27..105bac27 mode 000000,100644..100644 --- a/m.css/plugins/m/test/test.py +++ b/m.css/plugins/m/test/test.py