├── .editorconfig ├── .gitattributes ├── .github └── title.png ├── .gitignore ├── .nova └── Tasks │ ├── Composer.json │ └── Test.json ├── .prettierrc ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── index.php ├── lib ├── Correction.php ├── Corrections │ ├── Abbreviations.php │ ├── Apostrophes.php │ ├── Caps.php │ ├── Dashes.php │ ├── Ellipsis.php │ ├── Lists.php │ ├── LongWords.php │ ├── Math.php │ ├── Primes.php │ ├── Punctation.php │ ├── Quotes.php │ ├── Trademarks.php │ └── Widont.php ├── Document.php ├── Locale.php └── Typographer.php ├── tests ├── CorrectionAbbreviationsTest.php ├── CorrectionApostrophesTest.php ├── CorrectionCapsTest.php ├── CorrectionDashesTest.php ├── CorrectionEllipsisTest.php ├── CorrectionLongWordsTest.php ├── CorrectionMathTest.php ├── CorrectionPrimesTest.php ├── CorrectionPunctationTest.php ├── CorrectionQuotesTest.php ├── CorrectionTrademarksTest.php ├── CorrectionWidontTest.php ├── TypographerBlockTest.php └── TypographerInlineTest.php └── vendor ├── autoload.php └── composer ├── ClassLoader.php ├── InstalledVersions.php ├── autoload_classmap.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php └── installed.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/.github/title.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/.gitignore -------------------------------------------------------------------------------- /.nova/Tasks/Composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/.nova/Tasks/Composer.json -------------------------------------------------------------------------------- /.nova/Tasks/Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/.nova/Tasks/Test.json -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/composer.lock -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/index.php -------------------------------------------------------------------------------- /lib/Correction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/lib/Correction.php -------------------------------------------------------------------------------- /lib/Corrections/Abbreviations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/lib/Corrections/Abbreviations.php -------------------------------------------------------------------------------- /lib/Corrections/Apostrophes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/lib/Corrections/Apostrophes.php -------------------------------------------------------------------------------- /lib/Corrections/Caps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/lib/Corrections/Caps.php -------------------------------------------------------------------------------- /lib/Corrections/Dashes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/lib/Corrections/Dashes.php -------------------------------------------------------------------------------- /lib/Corrections/Ellipsis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/lib/Corrections/Ellipsis.php -------------------------------------------------------------------------------- /lib/Corrections/Lists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/lib/Corrections/Lists.php -------------------------------------------------------------------------------- /lib/Corrections/LongWords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/lib/Corrections/LongWords.php -------------------------------------------------------------------------------- /lib/Corrections/Math.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/lib/Corrections/Math.php -------------------------------------------------------------------------------- /lib/Corrections/Primes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/lib/Corrections/Primes.php -------------------------------------------------------------------------------- /lib/Corrections/Punctation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/lib/Corrections/Punctation.php -------------------------------------------------------------------------------- /lib/Corrections/Quotes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/lib/Corrections/Quotes.php -------------------------------------------------------------------------------- /lib/Corrections/Trademarks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/lib/Corrections/Trademarks.php -------------------------------------------------------------------------------- /lib/Corrections/Widont.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/lib/Corrections/Widont.php -------------------------------------------------------------------------------- /lib/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/lib/Document.php -------------------------------------------------------------------------------- /lib/Locale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/lib/Locale.php -------------------------------------------------------------------------------- /lib/Typographer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/lib/Typographer.php -------------------------------------------------------------------------------- /tests/CorrectionAbbreviationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/tests/CorrectionAbbreviationsTest.php -------------------------------------------------------------------------------- /tests/CorrectionApostrophesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/tests/CorrectionApostrophesTest.php -------------------------------------------------------------------------------- /tests/CorrectionCapsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/tests/CorrectionCapsTest.php -------------------------------------------------------------------------------- /tests/CorrectionDashesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/tests/CorrectionDashesTest.php -------------------------------------------------------------------------------- /tests/CorrectionEllipsisTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/tests/CorrectionEllipsisTest.php -------------------------------------------------------------------------------- /tests/CorrectionLongWordsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/tests/CorrectionLongWordsTest.php -------------------------------------------------------------------------------- /tests/CorrectionMathTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/tests/CorrectionMathTest.php -------------------------------------------------------------------------------- /tests/CorrectionPrimesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/tests/CorrectionPrimesTest.php -------------------------------------------------------------------------------- /tests/CorrectionPunctationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/tests/CorrectionPunctationTest.php -------------------------------------------------------------------------------- /tests/CorrectionQuotesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/tests/CorrectionQuotesTest.php -------------------------------------------------------------------------------- /tests/CorrectionTrademarksTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/tests/CorrectionTrademarksTest.php -------------------------------------------------------------------------------- /tests/CorrectionWidontTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/tests/CorrectionWidontTest.php -------------------------------------------------------------------------------- /tests/TypographerBlockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/tests/TypographerBlockTest.php -------------------------------------------------------------------------------- /tests/TypographerInlineTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/tests/TypographerInlineTest.php -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hananils/kirby-typographer/HEAD/vendor/composer/installed.php --------------------------------------------------------------------------------