├── .editorconfig ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── feature_request.md │ └── other.md ├── dependabot.yml ├── pull_request_template.md └── workflows │ └── ci.yaml ├── .gitignore ├── .php-cs-fixer.dist.php ├── LICENSE.md ├── README.md ├── benchmarks ├── benchmark.php └── tests │ ├── angular-readme.md │ ├── bootstrap-readme.md │ ├── homebrew-readme.md │ ├── jquery-readme.md │ ├── markdown-readme.md │ ├── rails-readme.md │ └── textmate-readme.md ├── composer.json ├── composer.lock ├── phpunit.xml ├── psalm.xml ├── src └── ParsedownExtended.php └── tests ├── AbbreviationsTest.php ├── AlertsTest.php ├── CodeTest.php ├── CommentsTest.php ├── ConfigTest.php ├── DefinitionListsTest.php ├── DiagramsTest.php ├── EmojiTest.php ├── EmphasisTest.php ├── FootnotesTest.php ├── HeadingsTest.php ├── ImageTest.php ├── LinksTest.php ├── ListsTest.php ├── MathTest.php ├── QuotesTest.php ├── ReferencesTest.php ├── SmartypantsTest.php ├── TablesTest.php ├── ThematicBreaksTest.php ├── TocTest.php └── TypographerTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/.github/ISSUE_TEMPLATE/other.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/benchmarks/benchmark.php -------------------------------------------------------------------------------- /benchmarks/tests/angular-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/benchmarks/tests/angular-readme.md -------------------------------------------------------------------------------- /benchmarks/tests/bootstrap-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/benchmarks/tests/bootstrap-readme.md -------------------------------------------------------------------------------- /benchmarks/tests/homebrew-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/benchmarks/tests/homebrew-readme.md -------------------------------------------------------------------------------- /benchmarks/tests/jquery-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/benchmarks/tests/jquery-readme.md -------------------------------------------------------------------------------- /benchmarks/tests/markdown-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/benchmarks/tests/markdown-readme.md -------------------------------------------------------------------------------- /benchmarks/tests/rails-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/benchmarks/tests/rails-readme.md -------------------------------------------------------------------------------- /benchmarks/tests/textmate-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/benchmarks/tests/textmate-readme.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/phpunit.xml -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/ParsedownExtended.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/src/ParsedownExtended.php -------------------------------------------------------------------------------- /tests/AbbreviationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/AbbreviationsTest.php -------------------------------------------------------------------------------- /tests/AlertsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/AlertsTest.php -------------------------------------------------------------------------------- /tests/CodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/CodeTest.php -------------------------------------------------------------------------------- /tests/CommentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/CommentsTest.php -------------------------------------------------------------------------------- /tests/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/ConfigTest.php -------------------------------------------------------------------------------- /tests/DefinitionListsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/DefinitionListsTest.php -------------------------------------------------------------------------------- /tests/DiagramsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/DiagramsTest.php -------------------------------------------------------------------------------- /tests/EmojiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/EmojiTest.php -------------------------------------------------------------------------------- /tests/EmphasisTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/EmphasisTest.php -------------------------------------------------------------------------------- /tests/FootnotesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/FootnotesTest.php -------------------------------------------------------------------------------- /tests/HeadingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/HeadingsTest.php -------------------------------------------------------------------------------- /tests/ImageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/ImageTest.php -------------------------------------------------------------------------------- /tests/LinksTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/LinksTest.php -------------------------------------------------------------------------------- /tests/ListsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/ListsTest.php -------------------------------------------------------------------------------- /tests/MathTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/MathTest.php -------------------------------------------------------------------------------- /tests/QuotesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/QuotesTest.php -------------------------------------------------------------------------------- /tests/ReferencesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/ReferencesTest.php -------------------------------------------------------------------------------- /tests/SmartypantsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/SmartypantsTest.php -------------------------------------------------------------------------------- /tests/TablesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/TablesTest.php -------------------------------------------------------------------------------- /tests/ThematicBreaksTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/ThematicBreaksTest.php -------------------------------------------------------------------------------- /tests/TocTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/TocTest.php -------------------------------------------------------------------------------- /tests/TypographerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminHoegh/ParsedownExtended/HEAD/tests/TypographerTest.php --------------------------------------------------------------------------------