├── .gitignore ├── LICENSE.md ├── README.md ├── RELEASE.md ├── admin.css ├── admin.js ├── composer.json ├── composer.lock ├── front.js ├── front.min.js ├── images ├── black.png ├── blue.png ├── colour-wheel.png ├── custom.png ├── grey.png ├── transparent.png └── white.png ├── includes ├── class-toc-plus.php ├── class-toc-widget.php ├── functions.php ├── globals.php └── init.php ├── languages └── table-of-contents-plus.pot ├── phpcs.xml ├── readme.txt ├── screen.css ├── screen.min.css ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png ├── screenshot-5.png ├── screenshot-6.png └── toc.php /.gitignore: -------------------------------------------------------------------------------- 1 | ._* 2 | .svn 3 | .DS_Store 4 | Thumbs.db 5 | .nfs.* 6 | /vendor/ -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/RELEASE.md -------------------------------------------------------------------------------- /admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/admin.css -------------------------------------------------------------------------------- /admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/admin.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/composer.lock -------------------------------------------------------------------------------- /front.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/front.js -------------------------------------------------------------------------------- /front.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/front.min.js -------------------------------------------------------------------------------- /images/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/images/black.png -------------------------------------------------------------------------------- /images/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/images/blue.png -------------------------------------------------------------------------------- /images/colour-wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/images/colour-wheel.png -------------------------------------------------------------------------------- /images/custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/images/custom.png -------------------------------------------------------------------------------- /images/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/images/grey.png -------------------------------------------------------------------------------- /images/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/images/transparent.png -------------------------------------------------------------------------------- /images/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/images/white.png -------------------------------------------------------------------------------- /includes/class-toc-plus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/includes/class-toc-plus.php -------------------------------------------------------------------------------- /includes/class-toc-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/includes/class-toc-widget.php -------------------------------------------------------------------------------- /includes/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/includes/functions.php -------------------------------------------------------------------------------- /includes/globals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/includes/globals.php -------------------------------------------------------------------------------- /includes/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/includes/init.php -------------------------------------------------------------------------------- /languages/table-of-contents-plus.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/languages/table-of-contents-plus.pot -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/phpcs.xml -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/readme.txt -------------------------------------------------------------------------------- /screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/screen.css -------------------------------------------------------------------------------- /screen.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/screen.min.css -------------------------------------------------------------------------------- /screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/screenshot-1.png -------------------------------------------------------------------------------- /screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/screenshot-2.png -------------------------------------------------------------------------------- /screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/screenshot-3.png -------------------------------------------------------------------------------- /screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/screenshot-4.png -------------------------------------------------------------------------------- /screenshot-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/screenshot-5.png -------------------------------------------------------------------------------- /screenshot-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/screenshot-6.png -------------------------------------------------------------------------------- /toc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zedzedzed/table-of-contents-plus/HEAD/toc.php --------------------------------------------------------------------------------