├── Assets ├── css │ └── markdownplus.css └── js │ ├── checkbox.js │ ├── jquery.textcomplete.min.js │ └── markdownplus.js ├── Controller └── CheckboxController.php ├── Helper ├── CoreMarkdown.php └── MarkdownPlusHelper.php ├── LICENSE ├── Locale ├── de_DE │ └── translations.php └── de_DE_du │ └── translations.php ├── Makefile ├── Plugin.php ├── README.md ├── Template └── config │ └── config.php ├── composer.json ├── composer.lock └── vendor ├── autoload.php ├── composer ├── ClassLoader.php ├── InstalledVersions.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── installed.json ├── installed.php └── platform_check.php ├── erusev ├── parsedown-extra │ ├── .travis.yml │ ├── LICENSE.txt │ ├── ParsedownExtra.php │ ├── README.md │ ├── composer.json │ ├── phpunit.xml.dist │ └── test │ │ ├── ParsedownExtraTest.php │ │ ├── bootstrap.php │ │ └── data │ │ ├── abbreviation.html │ │ ├── abbreviation.md │ │ ├── compound_footnote.html │ │ ├── compound_footnote.md │ │ ├── definition_list.html │ │ ├── definition_list.md │ │ ├── footnote.html │ │ ├── footnote.md │ │ ├── markdown_inside_markup.html │ │ ├── markdown_inside_markup.md │ │ ├── special_attributes.html │ │ └── special_attributes.md └── parsedown │ ├── LICENSE.txt │ ├── Parsedown.php │ ├── README.md │ └── composer.json ├── joypixels └── emoji-toolkit │ ├── .editorconfig │ ├── .gitignore │ ├── .npmignore │ ├── .travis.yml │ ├── .versions │ ├── CONTRIBUTING.md │ ├── INSTALLATION.md │ ├── LICENSE.md │ ├── README.md │ ├── UPGRADE.md │ ├── USAGE.md │ ├── categories.json │ ├── composer.json │ ├── emoji.json │ ├── emoji_strategy.json │ ├── examples │ ├── JAVASCRIPT.md │ ├── OTHER.md │ ├── PHP.md │ └── README.md │ ├── extras │ ├── alpha-codes │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── eac.csv │ │ └── eac.json │ ├── category_icons │ │ ├── activity.svg │ │ ├── diversity.svg │ │ ├── flags.svg │ │ ├── food.svg │ │ ├── nature.svg │ │ ├── objects.svg │ │ ├── people.svg │ │ ├── recent.svg │ │ ├── symbols.svg │ │ └── travel.svg │ ├── css │ │ ├── joypixels-awesome.css │ │ ├── joypixels-awesome.css.map │ │ ├── joypixels.css │ │ └── joypixels.min.css │ └── fonts │ │ └── README.md │ ├── gruntfile.js │ ├── joypixels.json │ ├── lib │ ├── README.md │ ├── joypixels-awesome │ │ ├── README.md │ │ ├── _joypixels-awesome.map.scss │ │ ├── generate.js │ │ └── joypixels-awesome.scss │ ├── js │ │ ├── joypixels.js │ │ ├── joypixels.min.js │ │ └── tests │ │ │ ├── generate.js │ │ │ ├── template.html │ │ │ ├── tests.html │ │ │ └── validate.json │ ├── meteor │ │ ├── joypixels-client.js │ │ ├── post-export.js │ │ └── pre-export.js │ └── php │ │ ├── README.md │ │ ├── autoload.php │ │ ├── phpunit.xml.dist │ │ ├── src │ │ ├── Client.php │ │ ├── ClientInterface.php │ │ ├── Ruleset.php │ │ └── RulesetInterface.php │ │ ├── tests │ │ ├── ConversionTest.php │ │ ├── EmojiTest.php │ │ ├── JoyPixelsTest.php │ │ └── SpriteTest.php │ │ └── utils │ │ └── generateRegex.php │ ├── package.js │ └── package.json └── leblanc-simon └── parsedown-checkbox ├── .gitignore ├── LICENSE ├── ParsedownCheckbox.php ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml.dist └── test ├── ParsedownCheckboxTest.php └── bootstrap.php /Assets/css/markdownplus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/Assets/css/markdownplus.css -------------------------------------------------------------------------------- /Assets/js/checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/Assets/js/checkbox.js -------------------------------------------------------------------------------- /Assets/js/jquery.textcomplete.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/Assets/js/jquery.textcomplete.min.js -------------------------------------------------------------------------------- /Assets/js/markdownplus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/Assets/js/markdownplus.js -------------------------------------------------------------------------------- /Controller/CheckboxController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/Controller/CheckboxController.php -------------------------------------------------------------------------------- /Helper/CoreMarkdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/Helper/CoreMarkdown.php -------------------------------------------------------------------------------- /Helper/MarkdownPlusHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/Helper/MarkdownPlusHelper.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/LICENSE -------------------------------------------------------------------------------- /Locale/de_DE/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/Locale/de_DE/translations.php -------------------------------------------------------------------------------- /Locale/de_DE_du/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/Locale/de_DE_du/translations.php -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/Makefile -------------------------------------------------------------------------------- /Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/Plugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/README.md -------------------------------------------------------------------------------- /Template/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/Template/config/config.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/composer.lock -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/composer/installed.php -------------------------------------------------------------------------------- /vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/composer/platform_check.php -------------------------------------------------------------------------------- /vendor/erusev/parsedown-extra/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown-extra/.travis.yml -------------------------------------------------------------------------------- /vendor/erusev/parsedown-extra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown-extra/LICENSE.txt -------------------------------------------------------------------------------- /vendor/erusev/parsedown-extra/ParsedownExtra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown-extra/ParsedownExtra.php -------------------------------------------------------------------------------- /vendor/erusev/parsedown-extra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown-extra/README.md -------------------------------------------------------------------------------- /vendor/erusev/parsedown-extra/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown-extra/composer.json -------------------------------------------------------------------------------- /vendor/erusev/parsedown-extra/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown-extra/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/erusev/parsedown-extra/test/ParsedownExtraTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown-extra/test/ParsedownExtraTest.php -------------------------------------------------------------------------------- /vendor/erusev/parsedown-extra/test/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown-extra/test/bootstrap.php -------------------------------------------------------------------------------- /vendor/erusev/parsedown-extra/test/data/abbreviation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown-extra/test/data/abbreviation.html -------------------------------------------------------------------------------- /vendor/erusev/parsedown-extra/test/data/abbreviation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown-extra/test/data/abbreviation.md -------------------------------------------------------------------------------- /vendor/erusev/parsedown-extra/test/data/compound_footnote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown-extra/test/data/compound_footnote.html -------------------------------------------------------------------------------- /vendor/erusev/parsedown-extra/test/data/compound_footnote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown-extra/test/data/compound_footnote.md -------------------------------------------------------------------------------- /vendor/erusev/parsedown-extra/test/data/definition_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown-extra/test/data/definition_list.html -------------------------------------------------------------------------------- /vendor/erusev/parsedown-extra/test/data/definition_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown-extra/test/data/definition_list.md -------------------------------------------------------------------------------- /vendor/erusev/parsedown-extra/test/data/footnote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown-extra/test/data/footnote.html -------------------------------------------------------------------------------- /vendor/erusev/parsedown-extra/test/data/footnote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown-extra/test/data/footnote.md -------------------------------------------------------------------------------- /vendor/erusev/parsedown-extra/test/data/markdown_inside_markup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown-extra/test/data/markdown_inside_markup.html -------------------------------------------------------------------------------- /vendor/erusev/parsedown-extra/test/data/markdown_inside_markup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown-extra/test/data/markdown_inside_markup.md -------------------------------------------------------------------------------- /vendor/erusev/parsedown-extra/test/data/special_attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown-extra/test/data/special_attributes.html -------------------------------------------------------------------------------- /vendor/erusev/parsedown-extra/test/data/special_attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown-extra/test/data/special_attributes.md -------------------------------------------------------------------------------- /vendor/erusev/parsedown/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown/LICENSE.txt -------------------------------------------------------------------------------- /vendor/erusev/parsedown/Parsedown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown/Parsedown.php -------------------------------------------------------------------------------- /vendor/erusev/parsedown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown/README.md -------------------------------------------------------------------------------- /vendor/erusev/parsedown/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/erusev/parsedown/composer.json -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/.editorconfig -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/.gitignore -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/.npmignore -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/.travis.yml -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/.versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/.versions -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/INSTALLATION.md -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/LICENSE.md -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/README.md -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/UPGRADE.md -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/USAGE.md -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/categories.json -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/composer.json -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/emoji.json -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/emoji_strategy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/emoji_strategy.json -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/examples/JAVASCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/examples/JAVASCRIPT.md -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/examples/OTHER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/examples/OTHER.md -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/examples/PHP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/examples/PHP.md -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/examples/README.md -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/extras/alpha-codes/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/extras/alpha-codes/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/extras/alpha-codes/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/extras/alpha-codes/LICENSE.md -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/extras/alpha-codes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/extras/alpha-codes/README.md -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/extras/alpha-codes/eac.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/extras/alpha-codes/eac.csv -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/extras/alpha-codes/eac.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/extras/alpha-codes/eac.json -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/extras/category_icons/activity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/extras/category_icons/activity.svg -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/extras/category_icons/diversity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/extras/category_icons/diversity.svg -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/extras/category_icons/flags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/extras/category_icons/flags.svg -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/extras/category_icons/food.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/extras/category_icons/food.svg -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/extras/category_icons/nature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/extras/category_icons/nature.svg -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/extras/category_icons/objects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/extras/category_icons/objects.svg -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/extras/category_icons/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/extras/category_icons/people.svg -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/extras/category_icons/recent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/extras/category_icons/recent.svg -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/extras/category_icons/symbols.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/extras/category_icons/symbols.svg -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/extras/category_icons/travel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/extras/category_icons/travel.svg -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/extras/css/joypixels-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/extras/css/joypixels-awesome.css -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/extras/css/joypixels-awesome.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/extras/css/joypixels-awesome.css.map -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/extras/css/joypixels.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/extras/css/joypixels.css -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/extras/css/joypixels.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/extras/css/joypixels.min.css -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/extras/fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/extras/fonts/README.md -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/gruntfile.js -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/joypixels.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "7.0" 3 | } -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/README.md -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/joypixels-awesome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/joypixels-awesome/README.md -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/joypixels-awesome/_joypixels-awesome.map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/joypixels-awesome/_joypixels-awesome.map.scss -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/joypixels-awesome/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/joypixels-awesome/generate.js -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/joypixels-awesome/joypixels-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/joypixels-awesome/joypixels-awesome.scss -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/js/joypixels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/js/joypixels.js -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/js/joypixels.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/js/joypixels.min.js -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/js/tests/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/js/tests/generate.js -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/js/tests/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/js/tests/template.html -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/js/tests/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/js/tests/tests.html -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/js/tests/validate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/js/tests/validate.json -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/meteor/joypixels-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/meteor/joypixels-client.js -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/meteor/post-export.js: -------------------------------------------------------------------------------- 1 | joypixels = module.exports; 2 | -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/meteor/pre-export.js: -------------------------------------------------------------------------------- 1 | module = {}; 2 | -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/php/README.md -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/php/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/php/autoload.php -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/php/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/php/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/php/src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/php/src/Client.php -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/php/src/ClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/php/src/ClientInterface.php -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/php/src/Ruleset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/php/src/Ruleset.php -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/php/src/RulesetInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/php/src/RulesetInterface.php -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/php/tests/ConversionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/php/tests/ConversionTest.php -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/php/tests/EmojiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/php/tests/EmojiTest.php -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/php/tests/JoyPixelsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/php/tests/JoyPixelsTest.php -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/php/tests/SpriteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/php/tests/SpriteTest.php -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/lib/php/utils/generateRegex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/lib/php/utils/generateRegex.php -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/package.js -------------------------------------------------------------------------------- /vendor/joypixels/emoji-toolkit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/joypixels/emoji-toolkit/package.json -------------------------------------------------------------------------------- /vendor/leblanc-simon/parsedown-checkbox/.gitignore: -------------------------------------------------------------------------------- 1 | phpunit.xml 2 | /vendor/ 3 | 4 | -------------------------------------------------------------------------------- /vendor/leblanc-simon/parsedown-checkbox/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/leblanc-simon/parsedown-checkbox/LICENSE -------------------------------------------------------------------------------- /vendor/leblanc-simon/parsedown-checkbox/ParsedownCheckbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/leblanc-simon/parsedown-checkbox/ParsedownCheckbox.php -------------------------------------------------------------------------------- /vendor/leblanc-simon/parsedown-checkbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/leblanc-simon/parsedown-checkbox/README.md -------------------------------------------------------------------------------- /vendor/leblanc-simon/parsedown-checkbox/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/leblanc-simon/parsedown-checkbox/composer.json -------------------------------------------------------------------------------- /vendor/leblanc-simon/parsedown-checkbox/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/leblanc-simon/parsedown-checkbox/composer.lock -------------------------------------------------------------------------------- /vendor/leblanc-simon/parsedown-checkbox/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/leblanc-simon/parsedown-checkbox/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/leblanc-simon/parsedown-checkbox/test/ParsedownCheckboxTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/leblanc-simon/parsedown-checkbox/test/ParsedownCheckboxTest.php -------------------------------------------------------------------------------- /vendor/leblanc-simon/parsedown-checkbox/test/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/MarkdownPlus/HEAD/vendor/leblanc-simon/parsedown-checkbox/test/bootstrap.php --------------------------------------------------------------------------------