├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── docs ├── docs_CN.md ├── docs_EN.md ├── screenshot.png ├── screenshot_02.gif └── screenshot_03.gif ├── src ├── Controller │ ├── ParseController.php │ └── UploadController.php ├── Facades │ └── Smartmd.php ├── Markdown.php ├── Smartmd.php ├── SmartmdServiceProvider.php ├── config │ └── smartmd.php ├── emoji │ ├── full.json │ └── shortcuts.php ├── static │ ├── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── KaTeX_AMS-Regular.ttf │ │ ├── KaTeX_AMS-Regular.woff │ │ ├── KaTeX_AMS-Regular.woff2 │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ ├── KaTeX_Fraktur-Bold.woff │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ ├── KaTeX_Fraktur-Regular.woff │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ ├── KaTeX_Main-Bold.ttf │ │ ├── KaTeX_Main-Bold.woff │ │ ├── KaTeX_Main-Bold.woff2 │ │ ├── KaTeX_Main-BoldItalic.ttf │ │ ├── KaTeX_Main-BoldItalic.woff │ │ ├── KaTeX_Main-BoldItalic.woff2 │ │ ├── KaTeX_Main-Italic.ttf │ │ ├── KaTeX_Main-Italic.woff │ │ ├── KaTeX_Main-Italic.woff2 │ │ ├── KaTeX_Main-Regular.ttf │ │ ├── KaTeX_Main-Regular.woff │ │ ├── KaTeX_Main-Regular.woff2 │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ ├── KaTeX_Math-BoldItalic.woff │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ ├── KaTeX_Math-Italic.ttf │ │ ├── KaTeX_Math-Italic.woff │ │ ├── KaTeX_Math-Italic.woff2 │ │ ├── KaTeX_SansSerif-Bold.ttf │ │ ├── KaTeX_SansSerif-Bold.woff │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ ├── KaTeX_SansSerif-Italic.ttf │ │ ├── KaTeX_SansSerif-Italic.woff │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ ├── KaTeX_SansSerif-Regular.ttf │ │ ├── KaTeX_SansSerif-Regular.woff │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ ├── KaTeX_Script-Regular.ttf │ │ ├── KaTeX_Script-Regular.woff │ │ ├── KaTeX_Script-Regular.woff2 │ │ ├── KaTeX_Size1-Regular.ttf │ │ ├── KaTeX_Size1-Regular.woff │ │ ├── KaTeX_Size1-Regular.woff2 │ │ ├── KaTeX_Size2-Regular.ttf │ │ ├── KaTeX_Size2-Regular.woff │ │ ├── KaTeX_Size2-Regular.woff2 │ │ ├── KaTeX_Size3-Regular.ttf │ │ ├── KaTeX_Size3-Regular.woff │ │ ├── KaTeX_Size3-Regular.woff2 │ │ ├── KaTeX_Size4-Regular.ttf │ │ ├── KaTeX_Size4-Regular.woff │ │ ├── KaTeX_Size4-Regular.woff2 │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ ├── KaTeX_Typewriter-Regular.woff │ │ ├── KaTeX_Typewriter-Regular.woff2 │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── highlight.min.js │ ├── katex.min.css │ ├── katex.min.js │ ├── mermaid.min.js │ ├── parse.min.js │ ├── smartmd.min.css │ └── smartmd.min.js └── views │ ├── head.blade.php │ ├── js-parse.blade.php │ ├── js-show.blade.php │ ├── php-parse.blade.php │ ├── php-show.blade.php │ └── write.blade.php └── tests └── MarkdownTest.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | .idea -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/HEAD/composer.json -------------------------------------------------------------------------------- /docs/docs_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/HEAD/docs/docs_CN.md -------------------------------------------------------------------------------- /docs/docs_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/HEAD/docs/docs_EN.md -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/HEAD/docs/screenshot.png -------------------------------------------------------------------------------- /docs/screenshot_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/HEAD/docs/screenshot_02.gif -------------------------------------------------------------------------------- /docs/screenshot_03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/HEAD/docs/screenshot_03.gif -------------------------------------------------------------------------------- /src/Controller/ParseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/HEAD/src/Controller/ParseController.php -------------------------------------------------------------------------------- /src/Controller/UploadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/HEAD/src/Controller/UploadController.php -------------------------------------------------------------------------------- /src/Facades/Smartmd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/HEAD/src/Facades/Smartmd.php -------------------------------------------------------------------------------- /src/Markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/HEAD/src/Markdown.php -------------------------------------------------------------------------------- /src/Smartmd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/HEAD/src/Smartmd.php -------------------------------------------------------------------------------- /src/SmartmdServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/HEAD/src/SmartmdServiceProvider.php -------------------------------------------------------------------------------- /src/config/smartmd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/HEAD/src/config/smartmd.php -------------------------------------------------------------------------------- /src/emoji/full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/HEAD/src/emoji/full.json -------------------------------------------------------------------------------- /src/emoji/shortcuts.php: -------------------------------------------------------------------------------- 1 |