├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── css │ └── toc.css ├── logo.png └── screenshot.png ├── blueprints.yaml ├── classes └── Toc.php ├── composer.json ├── composer.lock ├── docs ├── CONTRIBUTING.md └── INSTALL.md ├── hebe.json ├── languages.yaml ├── templates └── plugins │ └── toc │ └── toc.html.twig ├── toc.php ├── toc.yaml └── vendor ├── ForceUTF8 ├── README.md ├── composer.json ├── src │ └── ForceUTF8 │ │ └── Encoding.php └── test │ ├── ForceUTF8Test.php │ ├── Test.class.php │ └── data │ ├── russian.txt │ ├── test1.txt │ └── test1Latin.txt └── neitanod └── forceutf8 ├── README.md ├── composer.json ├── src └── ForceUTF8 │ └── Encoding.php └── test ├── ForceUTF8Test.php ├── Test.class.php └── data ├── russian.txt ├── test1.txt └── test1Latin.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/assets/css/toc.css -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /blueprints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/blueprints.yaml -------------------------------------------------------------------------------- /classes/Toc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/classes/Toc.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/composer.lock -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/docs/INSTALL.md -------------------------------------------------------------------------------- /hebe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/hebe.json -------------------------------------------------------------------------------- /languages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/languages.yaml -------------------------------------------------------------------------------- /templates/plugins/toc/toc.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/templates/plugins/toc/toc.html.twig -------------------------------------------------------------------------------- /toc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/toc.php -------------------------------------------------------------------------------- /toc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/toc.yaml -------------------------------------------------------------------------------- /vendor/ForceUTF8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/vendor/ForceUTF8/README.md -------------------------------------------------------------------------------- /vendor/ForceUTF8/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/vendor/ForceUTF8/composer.json -------------------------------------------------------------------------------- /vendor/ForceUTF8/src/ForceUTF8/Encoding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/vendor/ForceUTF8/src/ForceUTF8/Encoding.php -------------------------------------------------------------------------------- /vendor/ForceUTF8/test/ForceUTF8Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/vendor/ForceUTF8/test/ForceUTF8Test.php -------------------------------------------------------------------------------- /vendor/ForceUTF8/test/Test.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/vendor/ForceUTF8/test/Test.class.php -------------------------------------------------------------------------------- /vendor/ForceUTF8/test/data/russian.txt: -------------------------------------------------------------------------------- 1 | hello žš, привет 2 | -------------------------------------------------------------------------------- /vendor/ForceUTF8/test/data/test1.txt: -------------------------------------------------------------------------------- 1 | Hírek 2 | -------------------------------------------------------------------------------- /vendor/ForceUTF8/test/data/test1Latin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/vendor/ForceUTF8/test/data/test1Latin.txt -------------------------------------------------------------------------------- /vendor/neitanod/forceutf8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/vendor/neitanod/forceutf8/README.md -------------------------------------------------------------------------------- /vendor/neitanod/forceutf8/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/vendor/neitanod/forceutf8/composer.json -------------------------------------------------------------------------------- /vendor/neitanod/forceutf8/src/ForceUTF8/Encoding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/vendor/neitanod/forceutf8/src/ForceUTF8/Encoding.php -------------------------------------------------------------------------------- /vendor/neitanod/forceutf8/test/ForceUTF8Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/vendor/neitanod/forceutf8/test/ForceUTF8Test.php -------------------------------------------------------------------------------- /vendor/neitanod/forceutf8/test/Test.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/vendor/neitanod/forceutf8/test/Test.class.php -------------------------------------------------------------------------------- /vendor/neitanod/forceutf8/test/data/russian.txt: -------------------------------------------------------------------------------- 1 | hello žš, привет 2 | -------------------------------------------------------------------------------- /vendor/neitanod/forceutf8/test/data/test1.txt: -------------------------------------------------------------------------------- 1 | Hírek 2 | -------------------------------------------------------------------------------- /vendor/neitanod/forceutf8/test/data/test1Latin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sommerregen/grav-plugin-toc/HEAD/vendor/neitanod/forceutf8/test/data/test1Latin.txt --------------------------------------------------------------------------------