Changeset 11365
- Timestamp:
- 12/14/2021 01:26:20 AM (4 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/support-helphub
- Files:
-
- 3 added
- 1 edited
- 1 copied
-
inc/handbook-toc (added)
-
inc/handbook-toc/index.php (added)
-
inc/handbook-toc/style.css (copied) (copied from sites/trunk/wordpress.org/public_html/wp-content/plugins/support-helphub/inc/table-of-contents-lite/assets/css/style.css) (1 diff)
-
inc/handbook-toc/table-of-contents.php (added)
-
support-helphub.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-helphub/inc/handbook-toc/style.css
r11364 r11365 63 63 } 64 64 65 .table-of-contents h2.toc-title { 66 65 .helphub-page .table-of-contents > h1, 66 .helphub-page .table-of-contents > h2, 67 .helphub-page .table-of-contents > h3, 68 .helphub-page .table-of-contents > h4, 69 .helphub-page .table-of-contents > h5, 70 .helphub-page .table-of-contents > h6 { 67 71 /** 68 72 * originally font-size is 1.3em defined in wporg-breathe theme, -
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-helphub/support-helphub.php
r8254 r11365 16 16 namespace WordPressdotorg\HelpHub; 17 17 18 require_once( dirname( __FILE__ ) . '/inc/helphub-codex-languages/class-helphub-codex-languages.php' ); 19 require_once( dirname( __FILE__ ) . '/inc/helphub-contributors/helphub-contributors.php' ); 20 require_once( dirname( __FILE__ ) . '/inc/helphub-post-types/helphub-post-types.php' ); 21 require_once( dirname( __FILE__ ) . '/inc/helphub-read-time/helphub-read-time.php' ); 22 require_once( dirname( __FILE__ ) . '/inc/table-of-contents-lite/table-of-contents-lite.php' ); 23 require_once( dirname( __FILE__ ) . '/inc/helphub-front-page-blocks/helphub-front-page-blocks.php' ); 24 require_once( dirname( __FILE__ ) . '/inc/helphub-customroles/class-helphub-custom-roles.php' ); 25 require_once( dirname( __FILE__ ) . '/inc/helphub-manager/class-helphub-manager.php' ); 18 define( 'PLUGIN', __FILE__ ); 19 20 require __DIR__ . '/inc/helphub-codex-languages/class-helphub-codex-languages.php'; 21 require __DIR__ . '/inc/helphub-contributors/helphub-contributors.php'; 22 require __DIR__ . '/inc/helphub-post-types/helphub-post-types.php'; 23 require __DIR__ . '/inc/helphub-read-time/helphub-read-time.php'; 24 require __DIR__ . '/inc/helphub-front-page-blocks/helphub-front-page-blocks.php'; 25 require __DIR__ . '/inc/helphub-customroles/class-helphub-custom-roles.php'; 26 require __DIR__ . '/inc/helphub-manager/class-helphub-manager.php'; 27 require __DIR__ . '/inc/handbook-toc/index.php';
Note: See TracChangeset
for help on using the changeset viewer.