├── .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: -------------------------------------------------------------------------------- 1 | *.js linguist-language=php 2 | *.css linguist-language=php 3 | *.html linguist-language=php 4 | *.blade linguist-language=php -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | .idea -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | matrix: 3 | include: 4 | - php: 7.1 5 | - php: 7.2 6 | - php: 7.3 7 | fast_finish: true 8 | allow_failures: 9 | - php: 7.3 10 | 11 | install: 12 | - composer install --prefer-dist --no-interaction --no-progress 13 | 14 | script: 15 | - vendor/bin/phpunit tests/MarkdownTest.php 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 NoisyWind 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Laravel-smartmd 2 | 3 | ![](https://xiaoqingxin.site/images/default_img.jpg) 4 | 5 |

6 | Documentation | 中文文档 7 |

8 | 9 |

10 | 11 | Software License 12 | Software License 13 | packagist 14 |

15 | 16 | A simple markdown editor compatible most markdown parse,You can choose any parse methods on server or client,like Mathematical formula、flowchart、upload image... 17 | this program is a plugin for laravel 5.4 and php 7.1 upper.more feature develop now... 18 | 19 | ## Screenshots 20 | editor demo: [Demo](https://xiaoqingxin.site/editor/write) 21 | js render page [Demo](https://xiaoqingxin.site/editor/js-show) 22 | php render page [Demo](https://xiaoqingxin.site/editor/php-show) 23 | 24 | ![](./docs/screenshot.png) 25 | --- 26 | ![](./docs/screenshot_02.gif) 27 | --- 28 | ![](./docs/screenshot_03.gif) 29 | 30 | Reference: 31 | - CodeMirror [link](https://github.com/codemirror/CodeMirror) 32 | - Simplemde-markdown [link](https://github.com/sparksuite/simplemde-markdown-editor) 33 | - markdown-it (markdown render) [link](https://github.com/markdown-it/markdown-it) 34 | - mermaid (flowchart) [link](https://github.com/knsv/mermaid) 35 | - intervention (image handling) [link](https://github.com/Intervention/image) 36 | 37 | ## requirements 38 | - PHP >= 7.1.0 39 | - Laravel >= 5.4.0 40 | 41 | ## Installation 42 | First, install package. 43 | ``` 44 | composer require noisywinds/laravel-smartmd 45 | ``` 46 | Then run these commands to publish assets and config: 47 | ``` 48 | php artisan vendor:publish --provider="NoisyWinds\Smartmd\SmartmdServiceProvider" 49 | ``` 50 | make test view router: 51 | ``` 52 | Route::group(['namespace' => 'Smartmd', 'prefix' => 'editor'], function () { 53 | Route::post('/upload', 'UploadController@imSave'); 54 | Route::get('/write', function () { 55 | return view('vendor/smartmd/write'); 56 | }); 57 | Route::get('/php-show','ParseController@index'); 58 | Route::get('/js-show',function(){ 59 | return view('vendor/smartmd/js-show'); 60 | }); 61 | }); 62 | ``` 63 | Rewrite UploadController or config/smartmd.php to change upload path: 64 | ```php 65 | [ 68 | /* 69 | * like filesystem, Where do you like to place pictures? 70 | */ 71 | "root" => storage_path('app/public/images'), 72 | /* 73 | * return public image path 74 | */ 75 | "url" => env('APP_URL').'/storage/images', 76 | ], 77 | ]; 78 | ``` 79 | * notice: uploda image will optimize and resize in the UploadController 80 | 81 | ## Some shortcode 82 | 1. Bold (Ctrl + b) 83 | 2. Italic (Ctrl + I) 84 | 3. Insert Image (Ctrl + Alt + I) 85 | 4. Insert Math (Ctrl + m) 86 | 5. Insert flowchart (Ctrl + Alt + m) 87 | 6. more... (mac command the same with ctrl) 88 | 89 | 90 | ## editor options 91 | ```javascript 92 | new Smartmd({ 93 | // editor element {string} 94 | el: "#editor", 95 | 96 | // editor wrapper layout {string or number} 97 | height: "400px", 98 | width: "100%", 99 | 100 | // autosave 101 | autoSave: { 102 | // uuid is required {string or number} 103 | uuid: 1, 104 | // {number} 105 | delay: 5000 106 | }, 107 | 108 | // init state {boolean} 109 | isFullScreen: true, // default false 110 | isPreviewActive: true // default false 111 | }); 112 | ``` 113 | 114 | ## parse markdown 115 | #### I don't need editor: 116 | ```html 117 | // require in your view meta 118 | @include('Smartmd::js-parse') 119 | ``` 120 | ``` 121 | 127 | ``` 128 | #### I need editor: 129 | ```html 130 | 134 | ``` 135 | #### I want php render: 136 | * only render Formula、Flowchart、Code highlight use JavaScript 137 | ```html 138 | // require in your view meta 139 | @include('Smartmd::php-parse') 140 | ``` 141 | ParseController.php 142 | ``` 143 | use NoisyWinds\Smartmd\Markdown; 144 | 145 | $parse = new Markdown(); 146 | $text = "# Your markdown text"; 147 | $html = $parse->text($text); 148 | return view('Smartmd::php-show',['content'=>$html]); 149 | 150 | ``` 151 | 152 | ## How to expand 153 | #### editor 154 | - CodeMirror [link](https://github.com/codemirror/CodeMirror) 155 | #### markdown render 156 | - markdown-it (markdown render) [link](https://github.com/markdown-it/markdown-it) 157 | ## issue 158 | Welcome to ask questions or what features you want to be compatible with. 159 | 160 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "noisywinds/laravel-smartmd", 3 | "description": "a laravel markdown editor", 4 | "type": "library", 5 | "license": "MIT", 6 | "authors": [ 7 | { 8 | "name": "noisywinds", 9 | "email": "1624389686@qq.com" 10 | } 11 | ], 12 | "require": { 13 | "php": ">=7.0.0", 14 | "laravel/framework": "~5.4", 15 | "intervention/image": "^2.4", 16 | "phpunit/phpunit": "^7.4" 17 | }, 18 | "require-dev": { 19 | "laravel/laravel": "~5.4", 20 | "intervention/image": "^2.4" 21 | }, 22 | "autoload": { 23 | "psr-4": { 24 | "NoisyWinds\\Smartmd\\": "src/" 25 | } 26 | }, 27 | "extra": { 28 | "laravel": { 29 | "providers": [ 30 | "NoisyWinds\\Smartmd\\SmartmdServiceProvider" 31 | ], 32 | "aliases": { 33 | "Smartmd": "NoisyWinds\\Smartmd\\Facades\\Smartmd" 34 | } 35 | 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /docs/docs_CN.md: -------------------------------------------------------------------------------- 1 | # Laravel-smartmd 2 | 3 | ![](https://xiaoqingxin.site/images/default_img.jpg) 4 | 5 |

6 | Documentation | 中文文档 7 |

8 | 9 |

10 | 11 | Software License 12 | Software License 13 | packagist 14 |

15 | 16 | 一个实用的 markdown 编辑器兼容大部分主流的 markdown 语法解析,您可以选择前后端的任意一种解析方式,包括数学公式、流程图、emoji 表情、上传图片等...这是一个 laravel 插件的项目,要求 laravel 版本大于等于 5.4, php 版本大于等于 7.1 ,更多功能和文档随缘更新... 17 | 18 | 19 | ## 效果截图 20 | 编辑器示例页面:[Demo](https://xiaoqingxin.site/editor/write) 21 | js 渲染示例页面: [Demo](https://xiaoqingxin.site/editor/js-show) 22 | php 渲染示例页面: [Demo](https://xiaoqingxin.site/editor/php-show) 23 | 24 | ![](./screenshot.png) 25 | --- 26 | ![](./screenshot_02.gif) 27 | --- 28 | ![](./screenshot_03.gif) 29 | 30 | 31 | 参考和引用: 32 | - CodeMirror [link](https://github.com/codemirror/CodeMirror) 33 | - Simplemde-markdown [link](https://github.com/sparksuite/simplemde-markdown-editor) 34 | - markdown-it (markdown render) [link](https://github.com/markdown-it/markdown-it) 35 | - mermaid (flowchart) [link](https://github.com/knsv/mermaid) 36 | - intervention (image handling) [link](https://github.com/Intervention/image) 37 | 38 | ## 依赖于 39 | - PHP >= 7.1.0 40 | - Laravel >= 5.4.0 41 | 42 | ## 如何初始化 43 | 首先,安装 composer 的 noisywinds/laravel-smartmd 包: 44 | ``` 45 | composer require noisywinds/laravel-smartmd 46 | ``` 47 | 将素材和配置文件迁移到项目: 48 | ``` 49 | php artisan vendor:publish --provider="NoisyWinds\Smartmd\SmartmdServiceProvider" 50 | ``` 51 | 在 web.php 写入测试路径(后期可自行并入项目): 52 | ``` 53 | Route::group(['namespace' => 'Smartmd', 'prefix' => 'editor'], function () { 54 | Route::post('/upload', 'UploadController@imSave'); 55 | Route::get('/write', function () { 56 | return view('vendor/smartmd/write'); 57 | }); 58 | Route::get('/php-show','ParseController@index'); 59 | Route::get('/js-show',function(){ 60 | return view('vendor/smartmd/js-show'); 61 | }); 62 | }); 63 | ``` 64 | 重写 UploadController 或者 config/smartmd.php 来改变你的文件上传位置: 65 | ```php 66 | [ 69 | /* 70 | * like filesystem, Where do you like to place pictures? 71 | */ 72 | "root" => storage_path('app/public/images'), 73 | /* 74 | * return public image path 75 | */ 76 | "url" => env('APP_URL').'/storage/images', 77 | ], 78 | ]; 79 | ``` 80 | * 注意: 上传的图片会经过优化和压缩,这些处理你可以在 UploadController 中修改(比如加水印)。 81 | 82 | ## 一些快捷键 83 | 1. Bold (Ctrl + b) 84 | 2. Italic (Ctrl + I) 85 | 3. Insert Image (Ctrl + Alt + I) 86 | 4. Insert Math (Ctrl + m) 87 | 5. Insert flowchart (Ctrl + Alt + m) 88 | 6. more... (mac command the same with ctrl) 89 | 90 | 91 | ## 前端对编辑器的基础配置 92 | ```javascript 93 | new Smartmd({ 94 | el: "#editor", 95 | height: "80vh", 96 | autoSave: { 97 | uuid: 1, 98 | delay: 5000 99 | }, 100 | isFullScreen: true, 101 | isPreviewActive: true, 102 | uploads: { 103 | url: './upload', 104 | type: ['jpeg', 'png', 'bmp', 'gif', 'jpg'], 105 | maxSize: 4096, 106 | typeError: 'Image support format {type}.', 107 | sizeError: 'Image size is more than {maxSize} kb.', 108 | serverError: 'Upload failed in {msg}' 109 | } 110 | }); 111 | ``` 112 | 113 | ## 解析 markdown 114 | smartmd 提供了三种解析 markdown 的方式,您可以按照自己的需求通过不同方式渲染页面 115 | #### 不需要编辑器: 116 | ```html 117 | // require in your view meta 118 | @include('Smartmd::js-parse') 119 | ``` 120 | ``` 121 | 127 | ``` 128 | #### 需要编辑器: 129 | ```html 130 | 136 | ``` 137 | #### 直接 php 返回 html : 138 | * 只有在 流程图、语法高亮、数学公式时通过 js 渲染: 139 | ```html 140 | // require in your view meta 141 | @include('Smartmd::php-parse') 142 | ``` 143 | ParseController.php 144 | ``` 145 | use NoisyWinds\Smartmd\Markdown; 146 | 147 | $parse = new Markdown(); 148 | $text = "# Your markdown text"; 149 | $html = $parse->text($text); 150 | return view('Smartmd::php-show',['content'=>$html]); 151 | 152 | ``` 153 | 154 | ## 如何拓展 155 | #### 1. 编辑器 156 | Smartmd 的前端项目 [点击链接](https://github.com/noisywinds/smartmd) 157 | #### 2. 可视化的 markdown 文本渲染 158 | 参考 markdown-it 的插件开发 [链接](https://github.com/markdown-it/markdown-it) 159 | 如需更改后端的解析规则,后端可修改 Markdown.php, 前端需要修改 codemirror 的 token 160 | 161 | ## 问题反馈 162 | 欢迎你在 issue 反馈你遇到的问题和你想兼容或者想拓展的需求,希望能给到你一些帮助。 163 | 164 | -------------------------------------------------------------------------------- /docs/docs_EN.md: -------------------------------------------------------------------------------- 1 | # Laravel-smartmd 2 | 3 | ![](https://xiaoqingxin.site/images/default_img.jpg) 4 | 5 |

6 | Documentation | 中文文档 7 |

8 | 9 |

10 | 11 | Software License 12 | Software License 13 | packagist 14 |

15 | 16 | A simple markdown editor compatible most markdown parse,You can choose any parse methods on server or client,like Mathematical formula、flowchart、upload image... 17 | this program is a plugin for laravel 5.4 and php 7.1 upper.more feature develop now... 18 | 19 | 20 | ## screenshot 21 | editor demo page:[Demo](https://xiaoqingxin.site/editor/write) 22 | js parser page: [Demo](https://xiaoqingxin.site/editor/js-show) 23 | php parser page: [Demo](https://xiaoqingxin.site/editor/php-show) 24 | 25 | ![](./screenshot.png) 26 | --- 27 | ![](./screenshot_02.gif) 28 | --- 29 | ![](./screenshot_03.gif) 30 | 31 | Reference: 32 | - CodeMirror [link](https://github.com/codemirror/CodeMirror) 33 | - Simplemde-markdown [link](https://github.com/sparksuite/simplemde-markdown-editor) 34 | - markdown-it (markdown render) [link](https://github.com/markdown-it/markdown-it) 35 | - mermaid (flowchart) [link](https://github.com/knsv/mermaid) 36 | - intervention (image handling) [link](https://github.com/Intervention/image) 37 | 38 | ## environment 39 | - PHP >= 7.1.0 40 | - Laravel >= 5.4.0 41 | 42 | ## How to use 43 | Install: 44 | ``` 45 | composer require noisywinds/laravel-smartmd 46 | ``` 47 | Initialization: 48 | ``` 49 | php artisan vendor:publish --provider="NoisyWinds\Smartmd\SmartmdServiceProvider" 50 | ``` 51 | Write route in web.php : 52 | ``` 53 | Route::group(['namespace' => 'Smartmd', 'prefix' => 'editor'], function () { 54 | Route::post('/upload', 'UploadController@imSave'); 55 | Route::get('/write', function () { 56 | return view('vendor/smartmd/write'); 57 | }); 58 | Route::get('/php-show','ParseController@index'); 59 | Route::get('/js-show',function(){ 60 | return view('vendor/smartmd/js-show'); 61 | }); 62 | }); 63 | ``` 64 | rewrite UploadController or config/smartmd.php change your image upload place: 65 | ```php 66 | [ 69 | /* 70 | * like filesystem, Where do you like to place pictures? 71 | */ 72 | "root" => storage_path('app/public/images'), 73 | /* 74 | * return public image path 75 | */ 76 | "url" => env('APP_URL').'/storage/images', 77 | ], 78 | ]; 79 | ``` 80 | 81 | ## shortcut keys 82 | 1. Bold (Ctrl + b) 83 | 2. Italic (Ctrl + I) 84 | 3. Insert Image (Ctrl + Alt + I) 85 | 4. Insert Math (Ctrl + m) 86 | 5. Insert flowchart (Ctrl + Alt + m) 87 | 6. more... (mac command the same with ctrl) 88 | 89 | 90 | ## client initialization 91 | ```javascript 92 | new Smartmd({ 93 | el: "#editor", 94 | height: "80vh", 95 | autoSave: { 96 | uuid: 1, 97 | delay: 5000 98 | }, 99 | isFullScreen: true, 100 | isPreviewActive: true, 101 | uploads: { 102 | url: './upload', 103 | type: ['jpeg', 'png', 'bmp', 'gif', 'jpg'], 104 | maxSize: 4096, 105 | typeError: 'Image support format {type}.', 106 | sizeError: 'Image size is more than {maxSize} kb.', 107 | serverError: 'Upload failed in {msg}' 108 | } 109 | }); 110 | ``` 111 | 112 | ## parse markdown 113 | #### parse by javascript (without sever): 114 | ```html 115 | // require in your view meta 116 | @include('Smartmd::js-parse') 117 | ``` 118 | ``` 119 | 125 | ``` 126 | #### need editor and parse by javascript: 127 | ```html 128 | 134 | ``` 135 | #### php parse: 136 | ```html 137 | // require in your view meta 138 | @include('Smartmd::php-parse') 139 | ``` 140 | ParseController.php 141 | ``` 142 | use NoisyWinds\Smartmd\Markdown; 143 | 144 | $parse = new Markdown(); 145 | $text = "# Your markdown text"; 146 | $html = $parse->text($text); 147 | return view('Smartmd::php-show',['content'=>$html]); 148 | 149 | ``` 150 | 151 | ## How to extand 152 | #### 1. editor 153 | Smartmd.js [noisywinds/smartmd](https://github.com/noisywinds/smartmd) 154 | #### 2. markdown text parse 155 | use markdown-it plugin [link](https://github.com/markdown-it/markdown-it) 156 | 157 | -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/docs/screenshot.png -------------------------------------------------------------------------------- /docs/screenshot_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/docs/screenshot_02.gif -------------------------------------------------------------------------------- /docs/screenshot_03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/docs/screenshot_03.gif -------------------------------------------------------------------------------- /src/Controller/ParseController.php: -------------------------------------------------------------------------------- 1 | Mathematics abuse my hundreds of times, I stay mathematics such as first.\n\n### 2. Code highlight\n\n```javascript\n// get page width\nvar width = document.body.clientWidth\n```\n\n```python\n# Find the odd number within 100\ni = 0\nsum = 0\nwhile i < 100:\n if i % 2 == 1:\n sum += i\n i += 1\nprint \"odd number sum is:\" + str(sum)\n```\n\n### 3. Flow chart\n\n```\ngraph LR\nA[rock] -- write --> B((article))\nA --> C(posts)\nB --> D{mountain}\nC --> D\n```\n\n### 4.Table lists\n\n| Column 1 | Column 2 | Column 3 |\n| -------- | -------- | -------- |\n| Text | Text | Text |\n| Text | Text | Text |\n\n### 4.Emoji face\n\nemoji shortcode will be render like this:\n```\n:joy :laughing: :fire: :dragon_face: :frog:\n```\n:joy: :laughing: :fire: :dragon_face: :frog:\n\n### 4.Upload image\n![](https://www.xiaoqingxin.site/images/logo_3.png)\n\n\n\n"; 12 | $html = $parse->text($text); 13 | return view('Smartmd::php-show',['content'=>$html]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Controller/UploadController.php: -------------------------------------------------------------------------------- 1 | all(), [ 15 | 'image' => 'required|max:4096|image' 16 | ]); 17 | if ($validator->passes()) { 18 | $temp = $request->file('image'); 19 | $name = $temp->hashName(); 20 | $im = Image::make($temp->getPathname()); 21 | $width = $im->width(); 22 | $height = $im->height(); 23 | if ($width > 1200) { 24 | $scale = 1200 / $width; 25 | $width = ceil($width * $scale); 26 | $height = ceil($height * $scale); 27 | $im->resize($width, $height); 28 | } 29 | $im->save(config('smartmd.image.root') . '/' . $name, 80); 30 | return response()->json( 31 | [ 32 | 'path' => config('smartmd.image.url') . '/' . $name, 33 | 'size' => [ 34 | 'width' => $width, 35 | 'height' => $height 36 | ], 37 | 'message' => '图片上传成功' 38 | ] 39 | ); 40 | } 41 | return response()->json(['message' => $validator->errors()->first()],400); 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /src/Facades/Smartmd.php: -------------------------------------------------------------------------------- 1 | config = $config; 11 | $this->markdown = new Markdown(); 12 | } 13 | } -------------------------------------------------------------------------------- /src/SmartmdServiceProvider.php: -------------------------------------------------------------------------------- 1 | loadViewsFrom(__DIR__ . '/views', 'Smartmd'); 18 | $this->publishes([ 19 | __DIR__.'/views' => base_path('resources/views/vendor/smartmd'), 20 | __DIR__.'/static' => public_path('vendor/laravel-smartmd'), 21 | __DIR__.'/config' => config_path('/'), 22 | __DIR__.'/Controller' => app_path('Http/Controllers/Smartmd'), 23 | ]); 24 | 25 | } 26 | 27 | /** 28 | * Register services. 29 | * 30 | * @return void 31 | */ 32 | public function register() 33 | { 34 | $this->app->singleton('Smartmd', function ($app) { 35 | return new Smartmd($app['config']); 36 | }); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /src/config/smartmd.php: -------------------------------------------------------------------------------- 1 | [ 4 | /* 5 | * like filesystem, Where do you like to place pictures? 6 | */ 7 | "root" => storage_path('app/public'), 8 | /* 9 | * return public image path 10 | */ 11 | "url" => env('APP_URL').'/storage', 12 | ], 13 | ]; -------------------------------------------------------------------------------- /src/emoji/full.json: -------------------------------------------------------------------------------- 1 | { 2 | "100": "💯", 3 | "1234": "🔢", 4 | "grinning": "😀", 5 | "smiley": "😃", 6 | "smile": "😄", 7 | "grin": "😁", 8 | "laughing": "😆", 9 | "satisfied": "😆", 10 | "sweat_smile": "😅", 11 | "joy": "😂", 12 | "rofl": "🤣", 13 | "relaxed": "☺️", 14 | "blush": "😊", 15 | "innocent": "😇", 16 | "slightly_smiling_face": "🙂", 17 | "upside_down_face": "🙃", 18 | "wink": "😉", 19 | "relieved": "😌", 20 | "heart_eyes": "😍", 21 | "kissing_heart": "😘", 22 | "kissing": "😗", 23 | "kissing_smiling_eyes": "😙", 24 | "kissing_closed_eyes": "😚", 25 | "yum": "😋", 26 | "stuck_out_tongue_winking_eye": "😜", 27 | "stuck_out_tongue_closed_eyes": "😝", 28 | "stuck_out_tongue": "😛", 29 | "money_mouth_face": "🤑", 30 | "hugs": "🤗", 31 | "nerd_face": "🤓", 32 | "sunglasses": "😎", 33 | "clown_face": "🤡", 34 | "cowboy_hat_face": "🤠", 35 | "smirk": "😏", 36 | "unamused": "😒", 37 | "disappointed": "😞", 38 | "pensive": "😔", 39 | "worried": "😟", 40 | "confused": "😕", 41 | "slightly_frowning_face": "🙁", 42 | "frowning_face": "☹️", 43 | "persevere": "😣", 44 | "confounded": "😖", 45 | "tired_face": "😫", 46 | "weary": "😩", 47 | "triumph": "😤", 48 | "angry": "😠", 49 | "rage": "😡", 50 | "pout": "😡", 51 | "no_mouth": "😶", 52 | "neutral_face": "😐", 53 | "expressionless": "😑", 54 | "hushed": "😯", 55 | "frowning": "😦", 56 | "anguished": "😧", 57 | "open_mouth": "😮", 58 | "astonished": "😲", 59 | "dizzy_face": "😵", 60 | "flushed": "😳", 61 | "scream": "😱", 62 | "fearful": "😨", 63 | "cold_sweat": "😰", 64 | "cry": "😢", 65 | "disappointed_relieved": "😥", 66 | "drooling_face": "🤤", 67 | "sob": "😭", 68 | "sweat": "😓", 69 | "sleepy": "😪", 70 | "sleeping": "😴", 71 | "roll_eyes": "🙄", 72 | "thinking": "🤔", 73 | "lying_face": "🤥", 74 | "grimacing": "😬", 75 | "zipper_mouth_face": "🤐", 76 | "nauseated_face": "🤢", 77 | "sneezing_face": "🤧", 78 | "mask": "😷", 79 | "face_with_thermometer": "🤒", 80 | "face_with_head_bandage": "🤕", 81 | "smiling_imp": "😈", 82 | "imp": "👿", 83 | "japanese_ogre": "👹", 84 | "japanese_goblin": "👺", 85 | "hankey": "💩", 86 | "poop": "💩", 87 | "shit": "💩", 88 | "ghost": "👻", 89 | "skull": "💀", 90 | "skull_and_crossbones": "☠️", 91 | "alien": "👽", 92 | "space_invader": "👾", 93 | "robot": "🤖", 94 | "jack_o_lantern": "🎃", 95 | "smiley_cat": "😺", 96 | "smile_cat": "😸", 97 | "joy_cat": "😹", 98 | "heart_eyes_cat": "😻", 99 | "smirk_cat": "😼", 100 | "kissing_cat": "😽", 101 | "scream_cat": "🙀", 102 | "crying_cat_face": "😿", 103 | "pouting_cat": "😾", 104 | "open_hands": "👐", 105 | "raised_hands": "🙌", 106 | "clap": "👏", 107 | "pray": "🙏", 108 | "handshake": "🤝", 109 | "+1": "👍", 110 | "thumbsup": "👍", 111 | "-1": "👎", 112 | "thumbsdown": "👎", 113 | "fist_oncoming": "👊", 114 | "facepunch": "👊", 115 | "punch": "👊", 116 | "fist_raised": "✊", 117 | "fist": "✊", 118 | "fist_left": "🤛", 119 | "fist_right": "🤜", 120 | "crossed_fingers": "🤞", 121 | "v": "✌️", 122 | "metal": "🤘", 123 | "ok_hand": "👌", 124 | "point_left": "👈", 125 | "point_right": "👉", 126 | "point_up_2": "👆", 127 | "point_down": "👇", 128 | "point_up": "☝️", 129 | "hand": "✋", 130 | "raised_hand": "✋", 131 | "raised_back_of_hand": "🤚", 132 | "raised_hand_with_fingers_splayed": "🖐", 133 | "vulcan_salute": "🖖", 134 | "wave": "👋", 135 | "call_me_hand": "🤙", 136 | "muscle": "💪", 137 | "middle_finger": "🖕", 138 | "fu": "🖕", 139 | "writing_hand": "✍️", 140 | "selfie": "🤳", 141 | "nail_care": "💅", 142 | "ring": "💍", 143 | "lipstick": "💄", 144 | "kiss": "💋", 145 | "lips": "👄", 146 | "tongue": "👅", 147 | "ear": "👂", 148 | "nose": "👃", 149 | "footprints": "👣", 150 | "eye": "👁", 151 | "eyes": "👀", 152 | "speaking_head": "🗣", 153 | "bust_in_silhouette": "👤", 154 | "busts_in_silhouette": "👥", 155 | "baby": "👶", 156 | "boy": "👦", 157 | "girl": "👧", 158 | "man": "👨", 159 | "woman": "👩", 160 | "blonde_woman": "👱‍♀", 161 | "blonde_man": "👱", 162 | "person_with_blond_hair": "👱", 163 | "older_man": "👴", 164 | "older_woman": "👵", 165 | "man_with_gua_pi_mao": "👲", 166 | "woman_with_turban": "👳‍♀", 167 | "man_with_turban": "👳", 168 | "policewoman": "👮‍♀", 169 | "policeman": "👮", 170 | "cop": "👮", 171 | "construction_worker_woman": "👷‍♀", 172 | "construction_worker_man": "👷", 173 | "construction_worker": "👷", 174 | "guardswoman": "💂‍♀", 175 | "guardsman": "💂", 176 | "female_detective": "🕵️‍♀️", 177 | "male_detective": "🕵", 178 | "detective": "🕵", 179 | "woman_health_worker": "👩‍⚕", 180 | "man_health_worker": "👨‍⚕", 181 | "woman_farmer": "👩‍🌾", 182 | "man_farmer": "👨‍🌾", 183 | "woman_cook": "👩‍🍳", 184 | "man_cook": "👨‍🍳", 185 | "woman_student": "👩‍🎓", 186 | "man_student": "👨‍🎓", 187 | "woman_singer": "👩‍🎤", 188 | "man_singer": "👨‍🎤", 189 | "woman_teacher": "👩‍🏫", 190 | "man_teacher": "👨‍🏫", 191 | "woman_factory_worker": "👩‍🏭", 192 | "man_factory_worker": "👨‍🏭", 193 | "woman_technologist": "👩‍💻", 194 | "man_technologist": "👨‍💻", 195 | "woman_office_worker": "👩‍💼", 196 | "man_office_worker": "👨‍💼", 197 | "woman_mechanic": "👩‍🔧", 198 | "man_mechanic": "👨‍🔧", 199 | "woman_scientist": "👩‍🔬", 200 | "man_scientist": "👨‍🔬", 201 | "woman_artist": "👩‍🎨", 202 | "man_artist": "👨‍🎨", 203 | "woman_firefighter": "👩‍🚒", 204 | "man_firefighter": "👨‍🚒", 205 | "woman_pilot": "👩‍✈", 206 | "man_pilot": "👨‍✈", 207 | "woman_astronaut": "👩‍🚀", 208 | "man_astronaut": "👨‍🚀", 209 | "woman_judge": "👩‍⚖", 210 | "man_judge": "👨‍⚖", 211 | "mrs_claus": "🤶", 212 | "santa": "🎅", 213 | "princess": "👸", 214 | "prince": "🤴", 215 | "bride_with_veil": "👰", 216 | "man_in_tuxedo": "🤵", 217 | "angel": "👼", 218 | "pregnant_woman": "🤰", 219 | "bowing_woman": "🙇‍♀", 220 | "bowing_man": "🙇", 221 | "bow": "🙇", 222 | "tipping_hand_woman": "💁", 223 | "information_desk_person": "💁", 224 | "sassy_woman": "💁", 225 | "tipping_hand_man": "💁‍♂", 226 | "sassy_man": "💁‍♂", 227 | "no_good_woman": "🙅", 228 | "no_good": "🙅", 229 | "ng_woman": "🙅", 230 | "no_good_man": "🙅‍♂", 231 | "ng_man": "🙅‍♂", 232 | "ok_woman": "🙆", 233 | "ok_man": "🙆‍♂", 234 | "raising_hand_woman": "🙋", 235 | "raising_hand": "🙋", 236 | "raising_hand_man": "🙋‍♂", 237 | "woman_facepalming": "🤦‍♀", 238 | "man_facepalming": "🤦‍♂", 239 | "woman_shrugging": "🤷‍♀", 240 | "man_shrugging": "🤷‍♂", 241 | "pouting_woman": "🙎", 242 | "person_with_pouting_face": "🙎", 243 | "pouting_man": "🙎‍♂", 244 | "frowning_woman": "🙍", 245 | "person_frowning": "🙍", 246 | "frowning_man": "🙍‍♂", 247 | "haircut_woman": "💇", 248 | "haircut": "💇", 249 | "haircut_man": "💇‍♂", 250 | "massage_woman": "💆", 251 | "massage": "💆", 252 | "massage_man": "💆‍♂", 253 | "business_suit_levitating": "🕴", 254 | "dancer": "💃", 255 | "man_dancing": "🕺", 256 | "dancing_women": "👯", 257 | "dancers": "👯", 258 | "dancing_men": "👯‍♂", 259 | "walking_woman": "🚶‍♀", 260 | "walking_man": "🚶", 261 | "walking": "🚶", 262 | "running_woman": "🏃‍♀", 263 | "running_man": "🏃", 264 | "runner": "🏃", 265 | "running": "🏃", 266 | "couple": "👫", 267 | "two_women_holding_hands": "👭", 268 | "two_men_holding_hands": "👬", 269 | "couple_with_heart_woman_man": "💑", 270 | "couple_with_heart": "💑", 271 | "couple_with_heart_woman_woman": "👩‍❤️‍👩", 272 | "couple_with_heart_man_man": "👨‍❤️‍👨", 273 | "couplekiss_man_woman": "💏", 274 | "couplekiss_woman_woman": "👩‍❤️‍💋‍👩", 275 | "couplekiss_man_man": "👨‍❤️‍💋‍👨", 276 | "family_man_woman_boy": "👪", 277 | "family": "👪", 278 | "family_man_woman_girl": "👨‍👩‍👧", 279 | "family_man_woman_girl_boy": "👨‍👩‍👧‍👦", 280 | "family_man_woman_boy_boy": "👨‍👩‍👦‍👦", 281 | "family_man_woman_girl_girl": "👨‍👩‍👧‍👧", 282 | "family_woman_woman_boy": "👩‍👩‍👦", 283 | "family_woman_woman_girl": "👩‍👩‍👧", 284 | "family_woman_woman_girl_boy": "👩‍👩‍👧‍👦", 285 | "family_woman_woman_boy_boy": "👩‍👩‍👦‍👦", 286 | "family_woman_woman_girl_girl": "👩‍👩‍👧‍👧", 287 | "family_man_man_boy": "👨‍👨‍👦", 288 | "family_man_man_girl": "👨‍👨‍👧", 289 | "family_man_man_girl_boy": "👨‍👨‍👧‍👦", 290 | "family_man_man_boy_boy": "👨‍👨‍👦‍👦", 291 | "family_man_man_girl_girl": "👨‍👨‍👧‍👧", 292 | "family_woman_boy": "👩‍👦", 293 | "family_woman_girl": "👩‍👧", 294 | "family_woman_girl_boy": "👩‍👧‍👦", 295 | "family_woman_boy_boy": "👩‍👦‍👦", 296 | "family_woman_girl_girl": "👩‍👧‍👧", 297 | "family_man_boy": "👨‍👦", 298 | "family_man_girl": "👨‍👧", 299 | "family_man_girl_boy": "👨‍👧‍👦", 300 | "family_man_boy_boy": "👨‍👦‍👦", 301 | "family_man_girl_girl": "👨‍👧‍👧", 302 | "womans_clothes": "👚", 303 | "shirt": "👕", 304 | "tshirt": "👕", 305 | "jeans": "👖", 306 | "necktie": "👔", 307 | "dress": "👗", 308 | "bikini": "👙", 309 | "kimono": "👘", 310 | "high_heel": "👠", 311 | "sandal": "👡", 312 | "boot": "👢", 313 | "mans_shoe": "👞", 314 | "shoe": "👞", 315 | "athletic_shoe": "👟", 316 | "womans_hat": "👒", 317 | "tophat": "🎩", 318 | "mortar_board": "🎓", 319 | "crown": "👑", 320 | "rescue_worker_helmet": "⛑", 321 | "school_satchel": "🎒", 322 | "pouch": "👝", 323 | "purse": "👛", 324 | "handbag": "👜", 325 | "briefcase": "💼", 326 | "eyeglasses": "👓", 327 | "dark_sunglasses": "🕶", 328 | "closed_umbrella": "🌂", 329 | "open_umbrella": "☂️", 330 | "dog": "🐶", 331 | "cat": "🐱", 332 | "mouse": "🐭", 333 | "hamster": "🐹", 334 | "rabbit": "🐰", 335 | "fox_face": "🦊", 336 | "bear": "🐻", 337 | "panda_face": "🐼", 338 | "koala": "🐨", 339 | "tiger": "🐯", 340 | "lion": "🦁", 341 | "cow": "🐮", 342 | "pig": "🐷", 343 | "pig_nose": "🐽", 344 | "frog": "🐸", 345 | "monkey_face": "🐵", 346 | "see_no_evil": "🙈", 347 | "hear_no_evil": "🙉", 348 | "speak_no_evil": "🙊", 349 | "monkey": "🐒", 350 | "chicken": "🐔", 351 | "penguin": "🐧", 352 | "bird": "🐦", 353 | "baby_chick": "🐤", 354 | "hatching_chick": "🐣", 355 | "hatched_chick": "🐥", 356 | "duck": "🦆", 357 | "eagle": "🦅", 358 | "owl": "🦉", 359 | "bat": "🦇", 360 | "wolf": "🐺", 361 | "boar": "🐗", 362 | "horse": "🐴", 363 | "unicorn": "🦄", 364 | "bee": "🐝", 365 | "honeybee": "🐝", 366 | "bug": "🐛", 367 | "butterfly": "🦋", 368 | "snail": "🐌", 369 | "shell": "🐚", 370 | "beetle": "🐞", 371 | "ant": "🐜", 372 | "spider": "🕷", 373 | "spider_web": "🕸", 374 | "turtle": "🐢", 375 | "snake": "🐍", 376 | "lizard": "🦎", 377 | "scorpion": "🦂", 378 | "crab": "🦀", 379 | "squid": "🦑", 380 | "octopus": "🐙", 381 | "shrimp": "🦐", 382 | "tropical_fish": "🐠", 383 | "fish": "🐟", 384 | "blowfish": "🐡", 385 | "dolphin": "🐬", 386 | "flipper": "🐬", 387 | "shark": "🦈", 388 | "whale": "🐳", 389 | "whale2": "🐋", 390 | "crocodile": "🐊", 391 | "leopard": "🐆", 392 | "tiger2": "🐅", 393 | "water_buffalo": "🐃", 394 | "ox": "🐂", 395 | "cow2": "🐄", 396 | "deer": "🦌", 397 | "dromedary_camel": "🐪", 398 | "camel": "🐫", 399 | "elephant": "🐘", 400 | "rhinoceros": "🦏", 401 | "gorilla": "🦍", 402 | "racehorse": "🐎", 403 | "pig2": "🐖", 404 | "goat": "🐐", 405 | "ram": "🐏", 406 | "sheep": "🐑", 407 | "dog2": "🐕", 408 | "poodle": "🐩", 409 | "cat2": "🐈", 410 | "rooster": "🐓", 411 | "turkey": "🦃", 412 | "dove": "🕊", 413 | "rabbit2": "🐇", 414 | "mouse2": "🐁", 415 | "rat": "🐀", 416 | "chipmunk": "🐿", 417 | "feet": "🐾", 418 | "paw_prints": "🐾", 419 | "dragon": "🐉", 420 | "dragon_face": "🐲", 421 | "cactus": "🌵", 422 | "christmas_tree": "🎄", 423 | "evergreen_tree": "🌲", 424 | "deciduous_tree": "🌳", 425 | "palm_tree": "🌴", 426 | "seedling": "🌱", 427 | "herb": "🌿", 428 | "shamrock": "☘️", 429 | "four_leaf_clover": "🍀", 430 | "bamboo": "🎍", 431 | "tanabata_tree": "🎋", 432 | "leaves": "🍃", 433 | "fallen_leaf": "🍂", 434 | "maple_leaf": "🍁", 435 | "mushroom": "🍄", 436 | "ear_of_rice": "🌾", 437 | "bouquet": "💐", 438 | "tulip": "🌷", 439 | "rose": "🌹", 440 | "wilted_flower": "🥀", 441 | "sunflower": "🌻", 442 | "blossom": "🌼", 443 | "cherry_blossom": "🌸", 444 | "hibiscus": "🌺", 445 | "earth_americas": "🌎", 446 | "earth_africa": "🌍", 447 | "earth_asia": "🌏", 448 | "full_moon": "🌕", 449 | "waning_gibbous_moon": "🌖", 450 | "last_quarter_moon": "🌗", 451 | "waning_crescent_moon": "🌘", 452 | "new_moon": "🌑", 453 | "waxing_crescent_moon": "🌒", 454 | "first_quarter_moon": "🌓", 455 | "moon": "🌔", 456 | "waxing_gibbous_moon": "🌔", 457 | "new_moon_with_face": "🌚", 458 | "full_moon_with_face": "🌝", 459 | "sun_with_face": "🌞", 460 | "first_quarter_moon_with_face": "🌛", 461 | "last_quarter_moon_with_face": "🌜", 462 | "crescent_moon": "🌙", 463 | "dizzy": "💫", 464 | "star": "⭐️", 465 | "star2": "🌟", 466 | "sparkles": "✨", 467 | "zap": "⚡️", 468 | "fire": "🔥", 469 | "boom": "💥", 470 | "collision": "💥", 471 | "comet": "☄", 472 | "sunny": "☀️", 473 | "sun_behind_small_cloud": "🌤", 474 | "partly_sunny": "⛅️", 475 | "sun_behind_large_cloud": "🌥", 476 | "sun_behind_rain_cloud": "🌦", 477 | "rainbow": "🌈", 478 | "cloud": "☁️", 479 | "cloud_with_rain": "🌧", 480 | "cloud_with_lightning_and_rain": "⛈", 481 | "cloud_with_lightning": "🌩", 482 | "cloud_with_snow": "🌨", 483 | "snowman_with_snow": "☃️", 484 | "snowman": "⛄️", 485 | "snowflake": "❄️", 486 | "wind_face": "🌬", 487 | "dash": "💨", 488 | "tornado": "🌪", 489 | "fog": "🌫", 490 | "ocean": "🌊", 491 | "droplet": "💧", 492 | "sweat_drops": "💦", 493 | "umbrella": "☔️", 494 | "green_apple": "🍏", 495 | "apple": "🍎", 496 | "pear": "🍐", 497 | "tangerine": "🍊", 498 | "orange": "🍊", 499 | "mandarin": "🍊", 500 | "lemon": "🍋", 501 | "banana": "🍌", 502 | "watermelon": "🍉", 503 | "grapes": "🍇", 504 | "strawberry": "🍓", 505 | "melon": "🍈", 506 | "cherries": "🍒", 507 | "peach": "🍑", 508 | "pineapple": "🍍", 509 | "kiwi_fruit": "🥝", 510 | "avocado": "🥑", 511 | "tomato": "🍅", 512 | "eggplant": "🍆", 513 | "cucumber": "🥒", 514 | "carrot": "🥕", 515 | "corn": "🌽", 516 | "hot_pepper": "🌶", 517 | "potato": "🥔", 518 | "sweet_potato": "🍠", 519 | "chestnut": "🌰", 520 | "peanuts": "🥜", 521 | "honey_pot": "🍯", 522 | "croissant": "🥐", 523 | "bread": "🍞", 524 | "baguette_bread": "🥖", 525 | "cheese": "🧀", 526 | "egg": "🥚", 527 | "fried_egg": "🍳", 528 | "bacon": "🥓", 529 | "pancakes": "🥞", 530 | "fried_shrimp": "🍤", 531 | "poultry_leg": "🍗", 532 | "meat_on_bone": "🍖", 533 | "pizza": "🍕", 534 | "hotdog": "🌭", 535 | "hamburger": "🍔", 536 | "fries": "🍟", 537 | "stuffed_flatbread": "🥙", 538 | "taco": "🌮", 539 | "burrito": "🌯", 540 | "green_salad": "🥗", 541 | "shallow_pan_of_food": "🥘", 542 | "spaghetti": "🍝", 543 | "ramen": "🍜", 544 | "stew": "🍲", 545 | "fish_cake": "🍥", 546 | "sushi": "🍣", 547 | "bento": "🍱", 548 | "curry": "🍛", 549 | "rice": "🍚", 550 | "rice_ball": "🍙", 551 | "rice_cracker": "🍘", 552 | "oden": "🍢", 553 | "dango": "🍡", 554 | "shaved_ice": "🍧", 555 | "ice_cream": "🍨", 556 | "icecream": "🍦", 557 | "cake": "🍰", 558 | "birthday": "🎂", 559 | "custard": "🍮", 560 | "lollipop": "🍭", 561 | "candy": "🍬", 562 | "chocolate_bar": "🍫", 563 | "popcorn": "🍿", 564 | "doughnut": "🍩", 565 | "cookie": "🍪", 566 | "milk_glass": "🥛", 567 | "baby_bottle": "🍼", 568 | "coffee": "☕️", 569 | "tea": "🍵", 570 | "sake": "🍶", 571 | "beer": "🍺", 572 | "beers": "🍻", 573 | "clinking_glasses": "🥂", 574 | "wine_glass": "🍷", 575 | "tumbler_glass": "🥃", 576 | "cocktail": "🍸", 577 | "tropical_drink": "🍹", 578 | "champagne": "🍾", 579 | "spoon": "🥄", 580 | "fork_and_knife": "🍴", 581 | "plate_with_cutlery": "🍽", 582 | "soccer": "⚽️", 583 | "basketball": "🏀", 584 | "football": "🏈", 585 | "baseball": "⚾️", 586 | "tennis": "🎾", 587 | "volleyball": "🏐", 588 | "rugby_football": "🏉", 589 | "8ball": "🎱", 590 | "ping_pong": "🏓", 591 | "badminton": "🏸", 592 | "goal_net": "🥅", 593 | "ice_hockey": "🏒", 594 | "field_hockey": "🏑", 595 | "cricket": "🏏", 596 | "golf": "⛳️", 597 | "bow_and_arrow": "🏹", 598 | "fishing_pole_and_fish": "🎣", 599 | "boxing_glove": "🥊", 600 | "martial_arts_uniform": "🥋", 601 | "ice_skate": "⛸", 602 | "ski": "🎿", 603 | "skier": "⛷", 604 | "snowboarder": "🏂", 605 | "weight_lifting_woman": "🏋️‍♀️", 606 | "weight_lifting_man": "🏋", 607 | "person_fencing": "🤺", 608 | "women_wrestling": "🤼‍♀", 609 | "men_wrestling": "🤼‍♂", 610 | "woman_cartwheeling": "🤸‍♀", 611 | "man_cartwheeling": "🤸‍♂", 612 | "basketball_woman": "⛹️‍♀️", 613 | "basketball_man": "⛹", 614 | "woman_playing_handball": "🤾‍♀", 615 | "man_playing_handball": "🤾‍♂", 616 | "golfing_woman": "🏌️‍♀️", 617 | "golfing_man": "🏌", 618 | "surfing_woman": "🏄‍♀", 619 | "surfing_man": "🏄", 620 | "surfer": "🏄", 621 | "swimming_woman": "🏊‍♀", 622 | "swimming_man": "🏊", 623 | "swimmer": "🏊", 624 | "woman_playing_water_polo": "🤽‍♀", 625 | "man_playing_water_polo": "🤽‍♂", 626 | "rowing_woman": "🚣‍♀", 627 | "rowing_man": "🚣", 628 | "rowboat": "🚣", 629 | "horse_racing": "🏇", 630 | "biking_woman": "🚴‍♀", 631 | "biking_man": "🚴", 632 | "bicyclist": "🚴", 633 | "mountain_biking_woman": "🚵‍♀", 634 | "mountain_biking_man": "🚵", 635 | "mountain_bicyclist": "🚵", 636 | "running_shirt_with_sash": "🎽", 637 | "medal_sports": "🏅", 638 | "medal_military": "🎖", 639 | "1st_place_medal": "🥇", 640 | "2nd_place_medal": "🥈", 641 | "3rd_place_medal": "🥉", 642 | "trophy": "🏆", 643 | "rosette": "🏵", 644 | "reminder_ribbon": "🎗", 645 | "ticket": "🎫", 646 | "tickets": "🎟", 647 | "circus_tent": "🎪", 648 | "woman_juggling": "🤹‍♀", 649 | "man_juggling": "🤹‍♂", 650 | "performing_arts": "🎭", 651 | "art": "🎨", 652 | "clapper": "🎬", 653 | "microphone": "🎤", 654 | "headphones": "🎧", 655 | "musical_score": "🎼", 656 | "musical_keyboard": "🎹", 657 | "drum": "🥁", 658 | "saxophone": "🎷", 659 | "trumpet": "🎺", 660 | "guitar": "🎸", 661 | "violin": "🎻", 662 | "game_die": "🎲", 663 | "dart": "🎯", 664 | "bowling": "🎳", 665 | "video_game": "🎮", 666 | "slot_machine": "🎰", 667 | "car": "🚗", 668 | "red_car": "🚗", 669 | "taxi": "🚕", 670 | "blue_car": "🚙", 671 | "bus": "🚌", 672 | "trolleybus": "🚎", 673 | "racing_car": "🏎", 674 | "police_car": "🚓", 675 | "ambulance": "🚑", 676 | "fire_engine": "🚒", 677 | "minibus": "🚐", 678 | "truck": "🚚", 679 | "articulated_lorry": "🚛", 680 | "tractor": "🚜", 681 | "kick_scooter": "🛴", 682 | "bike": "🚲", 683 | "motor_scooter": "🛵", 684 | "motorcycle": "🏍", 685 | "rotating_light": "🚨", 686 | "oncoming_police_car": "🚔", 687 | "oncoming_bus": "🚍", 688 | "oncoming_automobile": "🚘", 689 | "oncoming_taxi": "🚖", 690 | "aerial_tramway": "🚡", 691 | "mountain_cableway": "🚠", 692 | "suspension_railway": "🚟", 693 | "railway_car": "🚃", 694 | "train": "🚋", 695 | "mountain_railway": "🚞", 696 | "monorail": "🚝", 697 | "bullettrain_side": "🚄", 698 | "bullettrain_front": "🚅", 699 | "light_rail": "🚈", 700 | "steam_locomotive": "🚂", 701 | "train2": "🚆", 702 | "metro": "🚇", 703 | "tram": "🚊", 704 | "station": "🚉", 705 | "helicopter": "🚁", 706 | "small_airplane": "🛩", 707 | "airplane": "✈️", 708 | "flight_departure": "🛫", 709 | "flight_arrival": "🛬", 710 | "rocket": "🚀", 711 | "artificial_satellite": "🛰", 712 | "seat": "💺", 713 | "canoe": "🛶", 714 | "boat": "⛵️", 715 | "sailboat": "⛵️", 716 | "motor_boat": "🛥", 717 | "speedboat": "🚤", 718 | "passenger_ship": "🛳", 719 | "ferry": "⛴", 720 | "ship": "🚢", 721 | "anchor": "⚓️", 722 | "construction": "🚧", 723 | "fuelpump": "⛽️", 724 | "busstop": "🚏", 725 | "vertical_traffic_light": "🚦", 726 | "traffic_light": "🚥", 727 | "world_map": "🗺", 728 | "moyai": "🗿", 729 | "statue_of_liberty": "🗽", 730 | "fountain": "⛲️", 731 | "tokyo_tower": "🗼", 732 | "european_castle": "🏰", 733 | "japanese_castle": "🏯", 734 | "stadium": "🏟", 735 | "ferris_wheel": "🎡", 736 | "roller_coaster": "🎢", 737 | "carousel_horse": "🎠", 738 | "parasol_on_ground": "⛱", 739 | "beach_umbrella": "🏖", 740 | "desert_island": "🏝", 741 | "mountain": "⛰", 742 | "mountain_snow": "🏔", 743 | "mount_fuji": "🗻", 744 | "volcano": "🌋", 745 | "desert": "🏜", 746 | "camping": "🏕", 747 | "tent": "⛺️", 748 | "railway_track": "🛤", 749 | "motorway": "🛣", 750 | "building_construction": "🏗", 751 | "factory": "🏭", 752 | "house": "🏠", 753 | "house_with_garden": "🏡", 754 | "houses": "🏘", 755 | "derelict_house": "🏚", 756 | "office": "🏢", 757 | "department_store": "🏬", 758 | "post_office": "🏣", 759 | "european_post_office": "🏤", 760 | "hospital": "🏥", 761 | "bank": "🏦", 762 | "hotel": "🏨", 763 | "convenience_store": "🏪", 764 | "school": "🏫", 765 | "love_hotel": "🏩", 766 | "wedding": "💒", 767 | "classical_building": "🏛", 768 | "church": "⛪️", 769 | "mosque": "🕌", 770 | "synagogue": "🕍", 771 | "kaaba": "🕋", 772 | "shinto_shrine": "⛩", 773 | "japan": "🗾", 774 | "rice_scene": "🎑", 775 | "national_park": "🏞", 776 | "sunrise": "🌅", 777 | "sunrise_over_mountains": "🌄", 778 | "stars": "🌠", 779 | "sparkler": "🎇", 780 | "fireworks": "🎆", 781 | "city_sunrise": "🌇", 782 | "city_sunset": "🌆", 783 | "cityscape": "🏙", 784 | "night_with_stars": "🌃", 785 | "milky_way": "🌌", 786 | "bridge_at_night": "🌉", 787 | "foggy": "🌁", 788 | "watch": "⌚️", 789 | "iphone": "📱", 790 | "calling": "📲", 791 | "computer": "💻", 792 | "keyboard": "⌨️", 793 | "desktop_computer": "🖥", 794 | "printer": "🖨", 795 | "computer_mouse": "🖱", 796 | "trackball": "🖲", 797 | "joystick": "🕹", 798 | "clamp": "🗜", 799 | "minidisc": "💽", 800 | "floppy_disk": "💾", 801 | "cd": "💿", 802 | "dvd": "📀", 803 | "vhs": "📼", 804 | "camera": "📷", 805 | "camera_flash": "📸", 806 | "video_camera": "📹", 807 | "movie_camera": "🎥", 808 | "film_projector": "📽", 809 | "film_strip": "🎞", 810 | "telephone_receiver": "📞", 811 | "phone": "☎️", 812 | "telephone": "☎️", 813 | "pager": "📟", 814 | "fax": "📠", 815 | "tv": "📺", 816 | "radio": "📻", 817 | "studio_microphone": "🎙", 818 | "level_slider": "🎚", 819 | "control_knobs": "🎛", 820 | "stopwatch": "⏱", 821 | "timer_clock": "⏲", 822 | "alarm_clock": "⏰", 823 | "mantelpiece_clock": "🕰", 824 | "hourglass": "⌛️", 825 | "hourglass_flowing_sand": "⏳", 826 | "satellite": "📡", 827 | "battery": "🔋", 828 | "electric_plug": "🔌", 829 | "bulb": "💡", 830 | "flashlight": "🔦", 831 | "candle": "🕯", 832 | "wastebasket": "🗑", 833 | "oil_drum": "🛢", 834 | "money_with_wings": "💸", 835 | "dollar": "💵", 836 | "yen": "💴", 837 | "euro": "💶", 838 | "pound": "💷", 839 | "moneybag": "💰", 840 | "credit_card": "💳", 841 | "gem": "💎", 842 | "balance_scale": "⚖️", 843 | "wrench": "🔧", 844 | "hammer": "🔨", 845 | "hammer_and_pick": "⚒", 846 | "hammer_and_wrench": "🛠", 847 | "pick": "⛏", 848 | "nut_and_bolt": "🔩", 849 | "gear": "⚙️", 850 | "chains": "⛓", 851 | "gun": "🔫", 852 | "bomb": "💣", 853 | "hocho": "🔪", 854 | "knife": "🔪", 855 | "dagger": "🗡", 856 | "crossed_swords": "⚔️", 857 | "shield": "🛡", 858 | "smoking": "🚬", 859 | "coffin": "⚰️", 860 | "funeral_urn": "⚱️", 861 | "amphora": "🏺", 862 | "crystal_ball": "🔮", 863 | "prayer_beads": "📿", 864 | "barber": "💈", 865 | "alembic": "⚗️", 866 | "telescope": "🔭", 867 | "microscope": "🔬", 868 | "hole": "🕳", 869 | "pill": "💊", 870 | "syringe": "💉", 871 | "thermometer": "🌡", 872 | "toilet": "🚽", 873 | "potable_water": "🚰", 874 | "shower": "🚿", 875 | "bathtub": "🛁", 876 | "bath": "🛀", 877 | "bellhop_bell": "🛎", 878 | "key": "🔑", 879 | "old_key": "🗝", 880 | "door": "🚪", 881 | "couch_and_lamp": "🛋", 882 | "bed": "🛏", 883 | "sleeping_bed": "🛌", 884 | "framed_picture": "🖼", 885 | "shopping": "🛍", 886 | "shopping_cart": "🛒", 887 | "gift": "🎁", 888 | "balloon": "🎈", 889 | "flags": "🎏", 890 | "ribbon": "🎀", 891 | "confetti_ball": "🎊", 892 | "tada": "🎉", 893 | "dolls": "🎎", 894 | "izakaya_lantern": "🏮", 895 | "lantern": "🏮", 896 | "wind_chime": "🎐", 897 | "email": "✉️", 898 | "envelope": "✉️", 899 | "envelope_with_arrow": "📩", 900 | "incoming_envelope": "📨", 901 | "e-mail": "📧", 902 | "love_letter": "💌", 903 | "inbox_tray": "📥", 904 | "outbox_tray": "📤", 905 | "package": "📦", 906 | "label": "🏷", 907 | "mailbox_closed": "📪", 908 | "mailbox": "📫", 909 | "mailbox_with_mail": "📬", 910 | "mailbox_with_no_mail": "📭", 911 | "postbox": "📮", 912 | "postal_horn": "📯", 913 | "scroll": "📜", 914 | "page_with_curl": "📃", 915 | "page_facing_up": "📄", 916 | "bookmark_tabs": "📑", 917 | "bar_chart": "📊", 918 | "chart_with_upwards_trend": "📈", 919 | "chart_with_downwards_trend": "📉", 920 | "spiral_notepad": "🗒", 921 | "spiral_calendar": "🗓", 922 | "calendar": "📆", 923 | "date": "📅", 924 | "card_index": "📇", 925 | "card_file_box": "🗃", 926 | "ballot_box": "🗳", 927 | "file_cabinet": "🗄", 928 | "clipboard": "📋", 929 | "file_folder": "📁", 930 | "open_file_folder": "📂", 931 | "card_index_dividers": "🗂", 932 | "newspaper_roll": "🗞", 933 | "newspaper": "📰", 934 | "notebook": "📓", 935 | "notebook_with_decorative_cover": "📔", 936 | "ledger": "📒", 937 | "closed_book": "📕", 938 | "green_book": "📗", 939 | "blue_book": "📘", 940 | "orange_book": "📙", 941 | "books": "📚", 942 | "book": "📖", 943 | "open_book": "📖", 944 | "bookmark": "🔖", 945 | "link": "🔗", 946 | "paperclip": "📎", 947 | "paperclips": "🖇", 948 | "triangular_ruler": "📐", 949 | "straight_ruler": "📏", 950 | "pushpin": "📌", 951 | "round_pushpin": "📍", 952 | "scissors": "✂️", 953 | "pen": "🖊", 954 | "fountain_pen": "🖋", 955 | "black_nib": "✒️", 956 | "paintbrush": "🖌", 957 | "crayon": "🖍", 958 | "memo": "📝", 959 | "pencil": "📝", 960 | "pencil2": "✏️", 961 | "mag": "🔍", 962 | "mag_right": "🔎", 963 | "lock_with_ink_pen": "🔏", 964 | "closed_lock_with_key": "🔐", 965 | "lock": "🔒", 966 | "unlock": "🔓", 967 | "heart": "❤️", 968 | "yellow_heart": "💛", 969 | "green_heart": "💚", 970 | "blue_heart": "💙", 971 | "purple_heart": "💜", 972 | "black_heart": "🖤", 973 | "broken_heart": "💔", 974 | "heavy_heart_exclamation": "❣️", 975 | "two_hearts": "💕", 976 | "revolving_hearts": "💞", 977 | "heartbeat": "💓", 978 | "heartpulse": "💗", 979 | "sparkling_heart": "💖", 980 | "cupid": "💘", 981 | "gift_heart": "💝", 982 | "heart_decoration": "💟", 983 | "peace_symbol": "☮️", 984 | "latin_cross": "✝️", 985 | "star_and_crescent": "☪️", 986 | "om": "🕉", 987 | "wheel_of_dharma": "☸️", 988 | "star_of_david": "✡️", 989 | "six_pointed_star": "🔯", 990 | "menorah": "🕎", 991 | "yin_yang": "☯️", 992 | "orthodox_cross": "☦️", 993 | "place_of_worship": "🛐", 994 | "ophiuchus": "⛎", 995 | "aries": "♈️", 996 | "taurus": "♉️", 997 | "gemini": "♊️", 998 | "cancer": "♋️", 999 | "leo": "♌️", 1000 | "virgo": "♍️", 1001 | "libra": "♎️", 1002 | "scorpius": "♏️", 1003 | "sagittarius": "♐️", 1004 | "capricorn": "♑️", 1005 | "aquarius": "♒️", 1006 | "pisces": "♓️", 1007 | "id": "🆔", 1008 | "atom_symbol": "⚛️", 1009 | "accept": "🉑", 1010 | "radioactive": "☢️", 1011 | "biohazard": "☣️", 1012 | "mobile_phone_off": "📴", 1013 | "vibration_mode": "📳", 1014 | "eight_pointed_black_star": "✴️", 1015 | "vs": "🆚", 1016 | "white_flower": "💮", 1017 | "ideograph_advantage": "🉐", 1018 | "secret": "㊙️", 1019 | "congratulations": "㊗️", 1020 | "u6e80": "🈵", 1021 | "a": "🅰️", 1022 | "b": "🅱️", 1023 | "ab": "🆎", 1024 | "cl": "🆑", 1025 | "o2": "🅾️", 1026 | "sos": "🆘", 1027 | "x": "❌", 1028 | "o": "⭕️", 1029 | "stop_sign": "🛑", 1030 | "no_entry": "⛔️", 1031 | "name_badge": "📛", 1032 | "no_entry_sign": "🚫", 1033 | "anger": "💢", 1034 | "hotsprings": "♨️", 1035 | "no_pedestrians": "🚷", 1036 | "do_not_litter": "🚯", 1037 | "no_bicycles": "🚳", 1038 | "non-potable_water": "🚱", 1039 | "underage": "🔞", 1040 | "no_mobile_phones": "📵", 1041 | "no_smoking": "🚭", 1042 | "exclamation": "❗️", 1043 | "heavy_exclamation_mark": "❗️", 1044 | "grey_exclamation": "❕", 1045 | "question": "❓", 1046 | "grey_question": "❔", 1047 | "bangbang": "‼️", 1048 | "interrobang": "⁉️", 1049 | "low_brightness": "🔅", 1050 | "high_brightness": "🔆", 1051 | "part_alternation_mark": "〽️", 1052 | "warning": "⚠️", 1053 | "children_crossing": "🚸", 1054 | "trident": "🔱", 1055 | "fleur_de_lis": "⚜️", 1056 | "beginner": "🔰", 1057 | "recycle": "♻️", 1058 | "white_check_mark": "✅", 1059 | "chart": "💹", 1060 | "sparkle": "❇️", 1061 | "eight_spoked_asterisk": "✳️", 1062 | "negative_squared_cross_mark": "❎", 1063 | "globe_with_meridians": "🌐", 1064 | "diamond_shape_with_a_dot_inside": "💠", 1065 | "m": "Ⓜ️", 1066 | "cyclone": "🌀", 1067 | "zzz": "💤", 1068 | "atm": "🏧", 1069 | "wc": "🚾", 1070 | "wheelchair": "♿️", 1071 | "parking": "🅿️", 1072 | "sa": "🈂️", 1073 | "passport_control": "🛂", 1074 | "customs": "🛃", 1075 | "baggage_claim": "🛄", 1076 | "left_luggage": "🛅", 1077 | "mens": "🚹", 1078 | "womens": "🚺", 1079 | "baby_symbol": "🚼", 1080 | "restroom": "🚻", 1081 | "put_litter_in_its_place": "🚮", 1082 | "cinema": "🎦", 1083 | "signal_strength": "📶", 1084 | "koko": "🈁", 1085 | "symbols": "🔣", 1086 | "information_source": "ℹ️", 1087 | "abc": "🔤", 1088 | "abcd": "🔡", 1089 | "capital_abcd": "🔠", 1090 | "ng": "🆖", 1091 | "ok": "🆗", 1092 | "up": "🆙", 1093 | "cool": "🆒", 1094 | "new": "🆕", 1095 | "free": "🆓", 1096 | "zero": "0️⃣", 1097 | "one": "1️⃣", 1098 | "two": "2️⃣", 1099 | "three": "3️⃣", 1100 | "four": "4️⃣", 1101 | "five": "5️⃣", 1102 | "six": "6️⃣", 1103 | "seven": "7️⃣", 1104 | "eight": "8️⃣", 1105 | "nine": "9️⃣", 1106 | "keycap_ten": "🔟", 1107 | "hash": "#️⃣", 1108 | "asterisk": "*️⃣", 1109 | "arrow_forward": "▶️", 1110 | "pause_button": "⏸", 1111 | "play_or_pause_button": "⏯", 1112 | "stop_button": "⏹", 1113 | "record_button": "⏺", 1114 | "next_track_button": "⏭", 1115 | "previous_track_button": "⏮", 1116 | "fast_forward": "⏩", 1117 | "rewind": "⏪", 1118 | "arrow_double_up": "⏫", 1119 | "arrow_double_down": "⏬", 1120 | "arrow_backward": "◀️", 1121 | "arrow_up_small": "🔼", 1122 | "arrow_down_small": "🔽", 1123 | "arrow_right": "➡️", 1124 | "arrow_left": "⬅️", 1125 | "arrow_up": "⬆️", 1126 | "arrow_down": "⬇️", 1127 | "arrow_upper_right": "↗️", 1128 | "arrow_lower_right": "↘️", 1129 | "arrow_lower_left": "↙️", 1130 | "arrow_upper_left": "↖️", 1131 | "arrow_up_down": "↕️", 1132 | "left_right_arrow": "↔️", 1133 | "arrow_right_hook": "↪️", 1134 | "leftwards_arrow_with_hook": "↩️", 1135 | "arrow_heading_up": "⤴️", 1136 | "arrow_heading_down": "⤵️", 1137 | "twisted_rightwards_arrows": "🔀", 1138 | "repeat": "🔁", 1139 | "repeat_one": "🔂", 1140 | "arrows_counterclockwise": "🔄", 1141 | "arrows_clockwise": "🔃", 1142 | "musical_note": "🎵", 1143 | "notes": "🎶", 1144 | "heavy_plus_sign": "➕", 1145 | "heavy_minus_sign": "➖", 1146 | "heavy_division_sign": "➗", 1147 | "heavy_multiplication_x": "✖️", 1148 | "heavy_dollar_sign": "💲", 1149 | "currency_exchange": "💱", 1150 | "tm": "™️", 1151 | "copyright": "©️", 1152 | "registered": "®️", 1153 | "wavy_dash": "〰️", 1154 | "curly_loop": "➰", 1155 | "loop": "➿", 1156 | "end": "🔚", 1157 | "back": "🔙", 1158 | "on": "🔛", 1159 | "top": "🔝", 1160 | "soon": "🔜", 1161 | "heavy_check_mark": "✔️", 1162 | "ballot_box_with_check": "☑️", 1163 | "radio_button": "🔘", 1164 | "white_circle": "⚪️", 1165 | "black_circle": "⚫️", 1166 | "red_circle": "🔴", 1167 | "large_blue_circle": "🔵", 1168 | "small_red_triangle": "🔺", 1169 | "small_red_triangle_down": "🔻", 1170 | "small_orange_diamond": "🔸", 1171 | "small_blue_diamond": "🔹", 1172 | "large_orange_diamond": "🔶", 1173 | "large_blue_diamond": "🔷", 1174 | "white_square_button": "🔳", 1175 | "black_square_button": "🔲", 1176 | "black_small_square": "▪️", 1177 | "white_small_square": "▫️", 1178 | "black_medium_small_square": "◾️", 1179 | "white_medium_small_square": "◽️", 1180 | "black_medium_square": "◼️", 1181 | "white_medium_square": "◻️", 1182 | "black_large_square": "⬛️", 1183 | "white_large_square": "⬜️", 1184 | "speaker": "🔈", 1185 | "mute": "🔇", 1186 | "sound": "🔉", 1187 | "loud_sound": "🔊", 1188 | "bell": "🔔", 1189 | "no_bell": "🔕", 1190 | "mega": "📣", 1191 | "loudspeaker": "📢", 1192 | "eye_speech_bubble": "👁‍🗨", 1193 | "speech_balloon": "💬", 1194 | "thought_balloon": "💭", 1195 | "right_anger_bubble": "🗯", 1196 | "spades": "♠️", 1197 | "clubs": "♣️", 1198 | "hearts": "♥️", 1199 | "diamonds": "♦️", 1200 | "black_joker": "🃏", 1201 | "flower_playing_cards": "🎴", 1202 | "mahjong": "🀄️", 1203 | "clock1": "🕐", 1204 | "clock2": "🕑", 1205 | "clock3": "🕒", 1206 | "clock4": "🕓", 1207 | "clock5": "🕔", 1208 | "clock6": "🕕", 1209 | "clock7": "🕖", 1210 | "clock8": "🕗", 1211 | "clock9": "🕘", 1212 | "clock10": "🕙", 1213 | "clock11": "🕚", 1214 | "clock12": "🕛", 1215 | "clock130": "🕜", 1216 | "clock230": "🕝", 1217 | "clock330": "🕞", 1218 | "clock430": "🕟", 1219 | "clock530": "🕠", 1220 | "clock630": "🕡", 1221 | "clock730": "🕢", 1222 | "clock830": "🕣", 1223 | "clock930": "🕤", 1224 | "clock1030": "🕥", 1225 | "clock1130": "🕦", 1226 | "clock1230": "🕧", 1227 | "white_flag": "🏳️", 1228 | "black_flag": "🏴", 1229 | "checkered_flag": "🏁", 1230 | "triangular_flag_on_post": "🚩", 1231 | "rainbow_flag": "🏳️‍🌈", 1232 | "afghanistan": "🇦🇫", 1233 | "aland_islands": "🇦🇽", 1234 | "albania": "🇦🇱", 1235 | "algeria": "🇩🇿", 1236 | "american_samoa": "🇦🇸", 1237 | "andorra": "🇦🇩", 1238 | "angola": "🇦🇴", 1239 | "anguilla": "🇦🇮", 1240 | "antarctica": "🇦🇶", 1241 | "antigua_barbuda": "🇦🇬", 1242 | "argentina": "🇦🇷", 1243 | "armenia": "🇦🇲", 1244 | "aruba": "🇦🇼", 1245 | "australia": "🇦🇺", 1246 | "austria": "🇦🇹", 1247 | "azerbaijan": "🇦🇿", 1248 | "bahamas": "🇧🇸", 1249 | "bahrain": "🇧🇭", 1250 | "bangladesh": "🇧🇩", 1251 | "barbados": "🇧🇧", 1252 | "belarus": "🇧🇾", 1253 | "belgium": "🇧🇪", 1254 | "belize": "🇧🇿", 1255 | "benin": "🇧🇯", 1256 | "bermuda": "🇧🇲", 1257 | "bhutan": "🇧🇹", 1258 | "bolivia": "🇧🇴", 1259 | "caribbean_netherlands": "🇧🇶", 1260 | "bosnia_herzegovina": "🇧🇦", 1261 | "botswana": "🇧🇼", 1262 | "brazil": "🇧🇷", 1263 | "british_indian_ocean_territory": "🇮🇴", 1264 | "british_virgin_islands": "🇻🇬", 1265 | "brunei": "🇧🇳", 1266 | "bulgaria": "🇧🇬", 1267 | "burkina_faso": "🇧🇫", 1268 | "burundi": "🇧🇮", 1269 | "cape_verde": "🇨🇻", 1270 | "cambodia": "🇰🇭", 1271 | "cameroon": "🇨🇲", 1272 | "canada": "🇨🇦", 1273 | "canary_islands": "🇮🇨", 1274 | "cayman_islands": "🇰🇾", 1275 | "central_african_republic": "🇨🇫", 1276 | "chad": "🇹🇩", 1277 | "chile": "🇨🇱", 1278 | "cn": "🇨🇳", 1279 | "christmas_island": "🇨🇽", 1280 | "cocos_islands": "🇨🇨", 1281 | "colombia": "🇨🇴", 1282 | "comoros": "🇰🇲", 1283 | "congo_brazzaville": "🇨🇬", 1284 | "congo_kinshasa": "🇨🇩", 1285 | "cook_islands": "🇨🇰", 1286 | "costa_rica": "🇨🇷", 1287 | "cote_divoire": "🇨🇮", 1288 | "croatia": "🇭🇷", 1289 | "cuba": "🇨🇺", 1290 | "curacao": "🇨🇼", 1291 | "cyprus": "🇨🇾", 1292 | "czech_republic": "🇨🇿", 1293 | "denmark": "🇩🇰", 1294 | "djibouti": "🇩🇯", 1295 | "dominica": "🇩🇲", 1296 | "dominican_republic": "🇩🇴", 1297 | "ecuador": "🇪🇨", 1298 | "egypt": "🇪🇬", 1299 | "el_salvador": "🇸🇻", 1300 | "equatorial_guinea": "🇬🇶", 1301 | "eritrea": "🇪🇷", 1302 | "estonia": "🇪🇪", 1303 | "ethiopia": "🇪🇹", 1304 | "eu": "🇪🇺", 1305 | "european_union": "🇪🇺", 1306 | "falkland_islands": "🇫🇰", 1307 | "faroe_islands": "🇫🇴", 1308 | "fiji": "🇫🇯", 1309 | "finland": "🇫🇮", 1310 | "fr": "🇫🇷", 1311 | "french_guiana": "🇬🇫", 1312 | "french_polynesia": "🇵🇫", 1313 | "french_southern_territories": "🇹🇫", 1314 | "gabon": "🇬🇦", 1315 | "gambia": "🇬🇲", 1316 | "georgia": "🇬🇪", 1317 | "de": "🇩🇪", 1318 | "ghana": "🇬🇭", 1319 | "gibraltar": "🇬🇮", 1320 | "greece": "🇬🇷", 1321 | "greenland": "🇬🇱", 1322 | "grenada": "🇬🇩", 1323 | "guadeloupe": "🇬🇵", 1324 | "guam": "🇬🇺", 1325 | "guatemala": "🇬🇹", 1326 | "guernsey": "🇬🇬", 1327 | "guinea": "🇬🇳", 1328 | "guinea_bissau": "🇬🇼", 1329 | "guyana": "🇬🇾", 1330 | "haiti": "🇭🇹", 1331 | "honduras": "🇭🇳", 1332 | "hong_kong": "🇭🇰", 1333 | "hungary": "🇭🇺", 1334 | "iceland": "🇮🇸", 1335 | "india": "🇮🇳", 1336 | "indonesia": "🇮🇩", 1337 | "iran": "🇮🇷", 1338 | "iraq": "🇮🇶", 1339 | "ireland": "🇮🇪", 1340 | "isle_of_man": "🇮🇲", 1341 | "israel": "🇮🇱", 1342 | "it": "🇮🇹", 1343 | "jamaica": "🇯🇲", 1344 | "jp": "🇯🇵", 1345 | "crossed_flags": "🎌", 1346 | "jersey": "🇯🇪", 1347 | "jordan": "🇯🇴", 1348 | "kazakhstan": "🇰🇿", 1349 | "kenya": "🇰🇪", 1350 | "kiribati": "🇰🇮", 1351 | "kosovo": "🇽🇰", 1352 | "kuwait": "🇰🇼", 1353 | "kyrgyzstan": "🇰🇬", 1354 | "laos": "🇱🇦", 1355 | "latvia": "🇱🇻", 1356 | "lebanon": "🇱🇧", 1357 | "lesotho": "🇱🇸", 1358 | "liberia": "🇱🇷", 1359 | "libya": "🇱🇾", 1360 | "liechtenstein": "🇱🇮", 1361 | "lithuania": "🇱🇹", 1362 | "luxembourg": "🇱🇺", 1363 | "macau": "🇲🇴", 1364 | "macedonia": "🇲🇰", 1365 | "madagascar": "🇲🇬", 1366 | "malawi": "🇲🇼", 1367 | "malaysia": "🇲🇾", 1368 | "maldives": "🇲🇻", 1369 | "mali": "🇲🇱", 1370 | "malta": "🇲🇹", 1371 | "marshall_islands": "🇲🇭", 1372 | "martinique": "🇲🇶", 1373 | "mauritania": "🇲🇷", 1374 | "mauritius": "🇲🇺", 1375 | "mayotte": "🇾🇹", 1376 | "mexico": "🇲🇽", 1377 | "micronesia": "🇫🇲", 1378 | "moldova": "🇲🇩", 1379 | "monaco": "🇲🇨", 1380 | "mongolia": "🇲🇳", 1381 | "montenegro": "🇲🇪", 1382 | "montserrat": "🇲🇸", 1383 | "morocco": "🇲🇦", 1384 | "mozambique": "🇲🇿", 1385 | "myanmar": "🇲🇲", 1386 | "namibia": "🇳🇦", 1387 | "nauru": "🇳🇷", 1388 | "nepal": "🇳🇵", 1389 | "netherlands": "🇳🇱", 1390 | "new_caledonia": "🇳🇨", 1391 | "new_zealand": "🇳🇿", 1392 | "nicaragua": "🇳🇮", 1393 | "niger": "🇳🇪", 1394 | "nigeria": "🇳🇬", 1395 | "niue": "🇳🇺", 1396 | "norfolk_island": "🇳🇫", 1397 | "northern_mariana_islands": "🇲🇵", 1398 | "north_korea": "🇰🇵", 1399 | "norway": "🇳🇴", 1400 | "oman": "🇴🇲", 1401 | "pakistan": "🇵🇰", 1402 | "palau": "🇵🇼", 1403 | "palestinian_territories": "🇵🇸", 1404 | "panama": "🇵🇦", 1405 | "papua_new_guinea": "🇵🇬", 1406 | "paraguay": "🇵🇾", 1407 | "peru": "🇵🇪", 1408 | "philippines": "🇵🇭", 1409 | "pitcairn_islands": "🇵🇳", 1410 | "poland": "🇵🇱", 1411 | "portugal": "🇵🇹", 1412 | "puerto_rico": "🇵🇷", 1413 | "qatar": "🇶🇦", 1414 | "reunion": "🇷🇪", 1415 | "romania": "🇷🇴", 1416 | "ru": "🇷🇺", 1417 | "rwanda": "🇷🇼", 1418 | "st_barthelemy": "🇧🇱", 1419 | "st_helena": "🇸🇭", 1420 | "st_kitts_nevis": "🇰🇳", 1421 | "st_lucia": "🇱🇨", 1422 | "st_pierre_miquelon": "🇵🇲", 1423 | "st_vincent_grenadines": "🇻🇨", 1424 | "samoa": "🇼🇸", 1425 | "san_marino": "🇸🇲", 1426 | "sao_tome_principe": "🇸🇹", 1427 | "saudi_arabia": "🇸🇦", 1428 | "senegal": "🇸🇳", 1429 | "serbia": "🇷🇸", 1430 | "seychelles": "🇸🇨", 1431 | "sierra_leone": "🇸🇱", 1432 | "singapore": "🇸🇬", 1433 | "sint_maarten": "🇸🇽", 1434 | "slovakia": "🇸🇰", 1435 | "slovenia": "🇸🇮", 1436 | "solomon_islands": "🇸🇧", 1437 | "somalia": "🇸🇴", 1438 | "south_africa": "🇿🇦", 1439 | "south_georgia_south_sandwich_islands": "🇬🇸", 1440 | "kr": "🇰🇷", 1441 | "south_sudan": "🇸🇸", 1442 | "es": "🇪🇸", 1443 | "sri_lanka": "🇱🇰", 1444 | "sudan": "🇸🇩", 1445 | "suriname": "🇸🇷", 1446 | "swaziland": "🇸🇿", 1447 | "sweden": "🇸🇪", 1448 | "switzerland": "🇨🇭", 1449 | "syria": "🇸🇾", 1450 | "taiwan": "🇹🇼", 1451 | "tajikistan": "🇹🇯", 1452 | "tanzania": "🇹🇿", 1453 | "thailand": "🇹🇭", 1454 | "timor_leste": "🇹🇱", 1455 | "togo": "🇹🇬", 1456 | "tokelau": "🇹🇰", 1457 | "tonga": "🇹🇴", 1458 | "trinidad_tobago": "🇹🇹", 1459 | "tunisia": "🇹🇳", 1460 | "tr": "🇹🇷", 1461 | "turkmenistan": "🇹🇲", 1462 | "turks_caicos_islands": "🇹🇨", 1463 | "tuvalu": "🇹🇻", 1464 | "uganda": "🇺🇬", 1465 | "ukraine": "🇺🇦", 1466 | "united_arab_emirates": "🇦🇪", 1467 | "gb": "🇬🇧", 1468 | "uk": "🇬🇧", 1469 | "us": "🇺🇸", 1470 | "us_virgin_islands": "🇻🇮", 1471 | "uruguay": "🇺🇾", 1472 | "uzbekistan": "🇺🇿", 1473 | "vanuatu": "🇻🇺", 1474 | "vatican_city": "🇻🇦", 1475 | "venezuela": "🇻🇪", 1476 | "vietnam": "🇻🇳", 1477 | "wallis_futuna": "🇼🇫", 1478 | "western_sahara": "🇪🇭", 1479 | "yemen": "🇾🇪", 1480 | "zambia": "🇿🇲", 1481 | "zimbabwe": "🇿🇼" 1482 | } -------------------------------------------------------------------------------- /src/emoji/shortcuts.php: -------------------------------------------------------------------------------- 1 | li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} 5 | -------------------------------------------------------------------------------- /src/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_AMS-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_AMS-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_AMS-Regular.woff -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Caligraphic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Caligraphic-Bold.ttf -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Caligraphic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Caligraphic-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Fraktur-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Fraktur-Bold.ttf -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Fraktur-Bold.woff -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Fraktur-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Fraktur-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Fraktur-Regular.woff -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Main-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Main-Bold.ttf -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Main-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Main-BoldItalic.ttf -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Main-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Main-BoldItalic.woff -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Main-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Main-BoldItalic.woff2 -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Main-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Main-Italic.ttf -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Main-Italic.woff -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Main-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Main-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Main-Regular.woff -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Math-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Math-BoldItalic.ttf -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Math-BoldItalic.woff -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Math-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Math-BoldItalic.woff2 -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Math-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Math-Italic.ttf -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Math-Italic.woff -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_SansSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_SansSerif-Bold.ttf -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_SansSerif-Bold.woff -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_SansSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_SansSerif-Italic.ttf -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_SansSerif-Italic.woff -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_SansSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_SansSerif-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_SansSerif-Regular.woff -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Script-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Script-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Script-Regular.woff -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Size1-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Size1-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Size1-Regular.woff -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Size2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Size2-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Size2-Regular.woff -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Size3-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Size3-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Size3-Regular.woff -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Size4-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Size4-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Size4-Regular.woff -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Typewriter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Typewriter-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Typewriter-Regular.woff -------------------------------------------------------------------------------- /src/static/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /src/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoisyWinds/laravel-smartmd/356e70557b8d5ed1555e449a3f49b37bb9d32159/src/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/static/highlight.min.js: -------------------------------------------------------------------------------- 1 | /*! highlight.js v9.11.0 | BSD3 License | git.io/hljslicense */ 2 | !function(e){var t="object"==typeof window&&window||"object"==typeof self&&self;"undefined"!=typeof exports?e(exports):t&&(t.hljs=e({}),"function"==typeof define&&define.amd&&define([],function(){return t.hljs}))}(function(e){function t(e){return e.replace(/&/g,"&").replace(//g,">")}function r(e){return e.nodeName.toLowerCase()}function a(e,t){var r=e&&e.exec(t);return r&&0===r.index}function n(e){return E.test(e)}function i(e){var t,r,a,i,s=e.className+" ";if(s+=e.parentNode?e.parentNode.className:"",r=M.exec(s))return w(r[1])?r[1]:"no-highlight";for(s=s.split(/\s+/),t=0,a=s.length;a>t;t++)if(i=s[t],n(i)||w(i))return i}function s(e){var t,r={},a=Array.prototype.slice.call(arguments,1);for(t in e)r[t]=e[t];return a.forEach(function(e){for(t in e)r[t]=e[t]}),r}function c(e){var t=[];return function a(e,n){for(var i=e.firstChild;i;i=i.nextSibling)3===i.nodeType?n+=i.nodeValue.length:1===i.nodeType&&(t.push({event:"start",offset:n,node:i}),n=a(i,n),r(i).match(/br|hr|img|input/)||t.push({event:"stop",offset:n,node:i}));return n}(e,0),t}function o(e,a,n){function i(){return e.length&&a.length?e[0].offset!==a[0].offset?e[0].offset"}function c(e){u+=""}function o(e){("start"===e.event?s:c)(e.node)}for(var l=0,u="",d=[];e.length||a.length;){var b=i();if(u+=t(n.substring(l,b[0].offset)),l=b[0].offset,b===e){d.reverse().forEach(c);do o(b.splice(0,1)[0]),b=i();while(b===e&&b.length&&b[0].offset===l);d.reverse().forEach(s)}else"start"===b[0].event?d.push(b[0].node):d.pop(),o(b.splice(0,1)[0])}return u+t(n.substr(l))}function l(e){return e.v&&!e.cached_variants&&(e.cached_variants=e.v.map(function(t){return s(e,{v:null},t)})),e.cached_variants||e.eW&&[s(e)]||[e]}function u(e){function t(e){return e&&e.source||e}function r(r,a){return new RegExp(t(r),"m"+(e.cI?"i":"")+(a?"g":""))}function a(n,i){if(!n.compiled){if(n.compiled=!0,n.k=n.k||n.bK,n.k){var s={},c=function(t,r){e.cI&&(r=r.toLowerCase()),r.split(" ").forEach(function(e){var r=e.split("|");s[r[0]]=[t,r[1]?Number(r[1]):1]})};"string"==typeof n.k?c("keyword",n.k):k(n.k).forEach(function(e){c(e,n.k[e])}),n.k=s}n.lR=r(n.l||/\w+/,!0),i&&(n.bK&&(n.b="\\b("+n.bK.split(" ").join("|")+")\\b"),n.b||(n.b=/\B|\b/),n.bR=r(n.b),n.e||n.eW||(n.e=/\B|\b/),n.e&&(n.eR=r(n.e)),n.tE=t(n.e)||"",n.eW&&i.tE&&(n.tE+=(n.e?"|":"")+i.tE)),n.i&&(n.iR=r(n.i)),null==n.r&&(n.r=1),n.c||(n.c=[]),n.c=Array.prototype.concat.apply([],n.c.map(function(e){return l("self"===e?n:e)})),n.c.forEach(function(e){a(e,n)}),n.starts&&a(n.starts,i);var o=n.c.map(function(e){return e.bK?"\\.?("+e.b+")\\.?":e.b}).concat([n.tE,n.i]).map(t).filter(Boolean);n.t=o.length?r(o.join("|"),!0):{exec:function(){return null}}}}a(e)}function d(e,r,n,i){function s(e,t){var r,n;for(r=0,n=t.c.length;n>r;r++)if(a(t.c[r].bR,e))return t.c[r]}function c(e,t){if(a(e.eR,t)){for(;e.endsParent&&e.parent;)e=e.parent;return e}return e.eW?c(e.parent,t):void 0}function o(e,t){return!n&&a(t.iR,e)}function l(e,t){var r=v.cI?t[0].toLowerCase():t[0];return e.k.hasOwnProperty(r)&&e.k[r]}function p(e,t,r,a){var n=a?"":L.classPrefix,i='',i+t+s}function m(){var e,r,a,n;if(!N.k)return t(E);for(n="",r=0,N.lR.lastIndex=0,a=N.lR.exec(E);a;)n+=t(E.substring(r,a.index)),e=l(N,a),e?(M+=e[1],n+=p(e[0],t(a[0]))):n+=t(a[0]),r=N.lR.lastIndex,a=N.lR.exec(E);return n+t(E.substr(r))}function f(){var e="string"==typeof N.sL;if(e&&!x[N.sL])return t(E);var r=e?d(N.sL,E,!0,k[N.sL]):b(E,N.sL.length?N.sL:void 0);return N.r>0&&(M+=r.r),e&&(k[N.sL]=r.top),p(r.language,r.value,!1,!0)}function g(){C+=null!=N.sL?f():m(),E=""}function _(e){C+=e.cN?p(e.cN,"",!0):"",N=Object.create(e,{parent:{value:N}})}function h(e,t){if(E+=e,null==t)return g(),0;var r=s(t,N);if(r)return r.skip?E+=t:(r.eB&&(E+=t),g(),r.rB||r.eB||(E=t)),_(r,t),r.rB?0:t.length;var a=c(N,t);if(a){var n=N;n.skip?E+=t:(n.rE||n.eE||(E+=t),g(),n.eE&&(E=t));do N.cN&&(C+=R),N.skip||(M+=N.r),N=N.parent;while(N!==a.parent);return a.starts&&_(a.starts,""),n.rE?0:t.length}if(o(t,N))throw new Error('Illegal lexeme "'+t+'" for mode "'+(N.cN||"")+'"');return E+=t,t.length||1}var v=w(e);if(!v)throw new Error('Unknown language: "'+e+'"');u(v);var y,N=i||v,k={},C="";for(y=N;y!==v;y=y.parent)y.cN&&(C=p(y.cN,"",!0)+C);var E="",M=0;try{for(var B,S,$=0;;){if(N.t.lastIndex=$,B=N.t.exec(r),!B)break;S=h(r.substring($,B.index),B[0]),$=B.index+S}for(h(r.substr($)),y=N;y.parent;y=y.parent)y.cN&&(C+=R);return{r:M,value:C,language:e,top:N}}catch(A){if(A.message&&-1!==A.message.indexOf("Illegal"))return{r:0,value:t(r)};throw A}}function b(e,r){r=r||L.languages||k(x);var a={r:0,value:t(e)},n=a;return r.filter(w).forEach(function(t){var r=d(t,e,!1);r.language=t,r.r>n.r&&(n=r),r.r>a.r&&(n=a,a=r)}),n.language&&(a.second_best=n),a}function p(e){return L.tabReplace||L.useBR?e.replace(B,function(e,t){return L.useBR&&"\n"===e?"
":L.tabReplace?t.replace(/\t/g,L.tabReplace):""}):e}function m(e,t,r){var a=t?C[t]:r,n=[e.trim()];return e.match(/\bhljs\b/)||n.push("hljs"),-1===e.indexOf(a)&&n.push(a),n.join(" ").trim()}function f(e){var t,r,a,s,l,u=i(e);n(u)||(L.useBR?(t=document.createElementNS("http://www.w3.org/1999/xhtml","div"),t.innerHTML=e.innerHTML.replace(/\n/g,"").replace(//g,"\n")):t=e,l=t.textContent,a=u?d(u,l,!0):b(l),r=c(t),r.length&&(s=document.createElementNS("http://www.w3.org/1999/xhtml","div"),s.innerHTML=a.value,a.value=o(r,c(s),l)),a.value=p(a.value),e.innerHTML=a.value,e.className=m(e.className,u,a.language),e.result={language:a.language,re:a.r},a.second_best&&(e.second_best={language:a.second_best.language,re:a.second_best.r}))}function g(e){L=s(L,e)}function _(){if(!_.called){_.called=!0;var e=document.querySelectorAll("pre code");N.forEach.call(e,f)}}function h(){addEventListener("DOMContentLoaded",_,!1),addEventListener("load",_,!1)}function v(t,r){var a=x[t]=r(e);a.aliases&&a.aliases.forEach(function(e){C[e]=t})}function y(){return k(x)}function w(e){return e=(e||"").toLowerCase(),x[e]||x[C[e]]}var N=[],k=Object.keys,x={},C={},E=/^(no-?highlight|plain|text)$/i,M=/\blang(?:uage)?-([\w-]+)\b/i,B=/((^(<[^>]+>|\t|)+|(?:\n)))/gm,R="
",L={classPrefix:"hljs-",tabReplace:null,useBR:!1,languages:void 0};return e.highlight=d,e.highlightAuto=b,e.fixMarkup=p,e.highlightBlock=f,e.configure=g,e.initHighlighting=_,e.initHighlightingOnLoad=h,e.registerLanguage=v,e.listLanguages=y,e.getLanguage=w,e.inherit=s,e.IR="[a-zA-Z]\\w*",e.UIR="[a-zA-Z_]\\w*",e.NR="\\b\\d+(\\.\\d+)?",e.CNR="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",e.BNR="\\b(0b[01]+)",e.RSR="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",e.BE={b:"\\\\[\\s\\S]",r:0},e.ASM={cN:"string",b:"'",e:"'",i:"\\n",c:[e.BE]},e.QSM={cN:"string",b:'"',e:'"',i:"\\n",c:[e.BE]},e.PWM={b:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},e.C=function(t,r,a){var n=e.inherit({cN:"comment",b:t,e:r,c:[]},a||{});return n.c.push(e.PWM),n.c.push({cN:"doctag",b:"(?:TODO|FIXME|NOTE|BUG|XXX):",r:0}),n},e.CLCM=e.C("//","$"),e.CBCM=e.C("/\\*","\\*/"),e.HCM=e.C("#","$"),e.NM={cN:"number",b:e.NR,r:0},e.CNM={cN:"number",b:e.CNR,r:0},e.BNM={cN:"number",b:e.BNR,r:0},e.CSSNM={cN:"number",b:e.NR+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",r:0},e.RM={cN:"regexp",b:/\//,e:/\/[gimuy]*/,i:/\n/,c:[e.BE,{b:/\[/,e:/\]/,r:0,c:[e.BE]}]},e.TM={cN:"title",b:e.IR,r:0},e.UTM={cN:"title",b:e.UIR,r:0},e.METHOD_GUARD={b:"\\.\\s*"+e.UIR,r:0},e.registerLanguage("apache",function(e){var t={cN:"number",b:"[\\$%]\\d+"};return{aliases:["apacheconf"],cI:!0,c:[e.HCM,{cN:"section",b:""},{cN:"attribute",b:/\w+/,r:0,k:{nomarkup:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"},starts:{e:/$/,r:0,k:{literal:"on off all"},c:[{cN:"meta",b:"\\s\\[",e:"\\]$"},{cN:"variable",b:"[\\$%]\\{",e:"\\}",c:["self",t]},t,e.QSM]}}],i:/\S/}}),e.registerLanguage("bash",function(e){var t={cN:"variable",v:[{b:/\$[\w\d#@][\w\d_]*/},{b:/\$\{(.*?)}/}]},r={cN:"string",b:/"/,e:/"/,c:[e.BE,t,{cN:"variable",b:/\$\(/,e:/\)/,c:[e.BE]}]},a={cN:"string",b:/'/,e:/'/};return{aliases:["sh","zsh"],l:/-?[a-z\._]+/,k:{keyword:"if then else elif fi for while in do done case esac function",literal:"true false",built_in:"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp",_:"-ne -eq -lt -gt -f -d -e -s -l -a"},c:[{cN:"meta",b:/^#![^\n]+sh\s*$/,r:10},{cN:"function",b:/\w[\w\d_]*\s*\(\s*\)\s*\{/,rB:!0,c:[e.inherit(e.TM,{b:/\w[\w\d_]*/})],r:0},e.HCM,r,a,t]}}),e.registerLanguage("coffeescript",function(e){var t={keyword:"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super yield import export from as default await then unless until loop of by when and or is isnt not",literal:"true false null undefined yes no on off",built_in:"npm require console print module global window document"},r="[A-Za-z$_][0-9A-Za-z$_]*",a={cN:"subst",b:/#\{/,e:/}/,k:t},n=[e.BNM,e.inherit(e.CNM,{starts:{e:"(\\s*/)?",r:0}}),{cN:"string",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/"""/,e:/"""/,c:[e.BE,a]},{b:/"/,e:/"/,c:[e.BE,a]}]},{cN:"regexp",v:[{b:"///",e:"///",c:[a,e.HCM]},{b:"//[gim]*",r:0},{b:/\/(?![ *])(\\\/|.)*?\/[gim]*(?=\W|$)/}]},{b:"@"+r},{sL:"javascript",eB:!0,eE:!0,v:[{b:"```",e:"```"},{b:"`",e:"`"}]}];a.c=n;var i=e.inherit(e.TM,{b:r}),s="(\\(.*\\))?\\s*\\B[-=]>",c={cN:"params",b:"\\([^\\(]",rB:!0,c:[{b:/\(/,e:/\)/,k:t,c:["self"].concat(n)}]};return{aliases:["coffee","cson","iced"],k:t,i:/\/\*/,c:n.concat([e.C("###","###"),e.HCM,{cN:"function",b:"^\\s*"+r+"\\s*=\\s*"+s,e:"[-=]>",rB:!0,c:[i,c]},{b:/[:\(,=]\s*/,r:0,c:[{cN:"function",b:s,e:"[-=]>",rB:!0,c:[c]}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:!0,i:/[:="\[\]]/,c:[i]},i]},{b:r+":",e:":",rB:!0,rE:!0,r:0}])}}),e.registerLanguage("cpp",function(e){var t={cN:"keyword",b:"\\b[a-z\\d_]*_t\\b"},r={cN:"string",v:[{b:'(u8?|U)?L?"',e:'"',i:"\\n",c:[e.BE]},{b:'(u8?|U)?R"',e:'"',c:[e.BE]},{b:"'\\\\?.",e:"'",i:"."}]},a={cN:"number",v:[{b:"\\b(0b[01']+)"},{b:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{b:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],r:0},n={cN:"meta",b:/#\s*[a-z]+\b/,e:/$/,k:{"meta-keyword":"if else elif endif define undef warning error line pragma ifdef ifndef include"},c:[{b:/\\\n/,r:0},e.inherit(r,{cN:"meta-string"}),{cN:"meta-string",b:/<[^\n>]*>/,e:/$/,i:"\\n"},e.CLCM,e.CBCM]},i=e.IR+"\\s*\\(",s={keyword:"int float while private char catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignof constexpr decltype noexcept static_assert thread_local restrict _Bool complex _Complex _Imaginary atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and or not",built_in:"std string cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr",literal:"true false nullptr NULL"},c=[t,e.CLCM,e.CBCM,a,r];return{aliases:["c","cc","h","c++","h++","hpp"],k:s,i:"",k:s,c:["self",t]},{b:e.IR+"::",k:s},{v:[{b:/=/,e:/;/},{b:/\(/,e:/\)/},{bK:"new throw return else",e:/;/}],k:s,c:c.concat([{b:/\(/,e:/\)/,k:s,c:c.concat(["self"]),r:0}]),r:0},{cN:"function",b:"("+e.IR+"[\\*&\\s]+)+"+i,rB:!0,e:/[{;=]/,eE:!0,k:s,i:/[^\w\s\*&]/,c:[{b:i,rB:!0,c:[e.TM],r:0},{cN:"params",b:/\(/,e:/\)/,k:s,r:0,c:[e.CLCM,e.CBCM,r,a,t]},e.CLCM,e.CBCM,n]},{cN:"class",bK:"class struct",e:/[{;:]/,c:[{b://,c:["self"]},e.TM]}]),exports:{preprocessor:n,strings:r,k:s}}}),e.registerLanguage("cs",function(e){var t={keyword:"abstract as base bool break byte case catch char checked const continue decimal default delegate do double else enum event explicit extern finally fixed float for foreach goto if implicit in int interface internal is lock long object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this try typeof uint ulong unchecked unsafe ushort using virtual void volatile while nameof add alias ascending async await by descending dynamic equals from get global group into join let on orderby partial remove select set value var where yield",literal:"null false true"},r={cN:"string",b:'@"',e:'"',c:[{b:'""'}]},a=e.inherit(r,{i:/\n/}),n={cN:"subst",b:"{",e:"}",k:t},i=e.inherit(n,{i:/\n/}),s={cN:"string",b:/\$"/,e:'"',i:/\n/,c:[{b:"{{"},{b:"}}"},e.BE,i]},c={cN:"string",b:/\$@"/,e:'"',c:[{b:"{{"},{b:"}}"},{b:'""'},n]},o=e.inherit(c,{i:/\n/,c:[{b:"{{"},{b:"}}"},{b:'""'},i]});n.c=[c,s,r,e.ASM,e.QSM,e.CNM,e.CBCM],i.c=[o,s,a,e.ASM,e.QSM,e.CNM,e.inherit(e.CBCM,{i:/\n/})];var l={v:[c,s,r,e.ASM,e.QSM]},u=e.IR+"(<"+e.IR+"(\\s*,\\s*"+e.IR+")*>)?(\\[\\])?";return{aliases:["csharp"],k:t,i:/::/,c:[e.C("///","$",{rB:!0,c:[{cN:"doctag",v:[{b:"///",r:0},{b:""},{b:""}]}]}),e.CLCM,e.CBCM,{cN:"meta",b:"#",e:"$",k:{"meta-keyword":"if else elif endif define undef warning error line region endregion pragma checksum"}},l,e.CNM,{bK:"class interface",e:/[{;=]/,i:/[^\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:"namespace",e:/[{;=]/,i:/[^\s:]/,c:[e.inherit(e.TM,{b:"[a-zA-Z](\\.?\\w)*"}),e.CLCM,e.CBCM]},{bK:"new return throw await",r:0},{cN:"function",b:"("+u+"\\s+)+"+e.IR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:t,c:[{b:e.IR+"\\s*\\(",rB:!0,c:[e.TM],r:0},{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,k:t,r:0,c:[l,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}}),e.registerLanguage("css",function(e){var t="[a-zA-Z-][a-zA-Z0-9_-]*",r={b:/[A-Z\_\.\-]+\s*:/,rB:!0,e:";",eW:!0,c:[{cN:"attribute",b:/\S/,e:":",eE:!0,starts:{eW:!0,eE:!0,c:[{b:/[\w-]+\(/,rB:!0,c:[{cN:"built_in",b:/[\w-]+/},{b:/\(/,e:/\)/,c:[e.ASM,e.QSM]}]},e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:"number",b:"#[0-9A-Fa-f]+"},{cN:"meta",b:"!important"}]}}]};return{cI:!0,i:/[=\/|'\$]/,c:[e.CBCM,{cN:"selector-id",b:/#[A-Za-z0-9_-]+/},{cN:"selector-class",b:/\.[A-Za-z0-9_-]+/},{cN:"selector-attr",b:/\[/,e:/\]/,i:"$"},{cN:"selector-pseudo",b:/:(:)?[a-zA-Z0-9\_\-\+\(\)"'.]+/},{b:"@(font-face|page)",l:"[a-z-]+",k:"font-face page"},{b:"@",e:"[{;]",i:/:/,c:[{cN:"keyword",b:/\w+/},{b:/\s/,eW:!0,eE:!0,r:0,c:[e.ASM,e.QSM,e.CSSNM]}]},{cN:"selector-tag",b:t,r:0},{b:"{",e:"}",i:/\S/,c:[e.CBCM,r]}]}}),e.registerLanguage("diff",function(e){return{aliases:["patch"],c:[{cN:"meta",r:10,v:[{b:/^@@ +\-\d+,\d+ +\+\d+,\d+ +@@$/},{b:/^\*\*\* +\d+,\d+ +\*\*\*\*$/},{b:/^\-\-\- +\d+,\d+ +\-\-\-\-$/}]},{cN:"comment",v:[{b:/Index: /,e:/$/},{b:/={3,}/,e:/$/},{b:/^\-{3}/,e:/$/},{b:/^\*{3} /,e:/$/},{b:/^\+{3}/,e:/$/},{b:/\*{5}/,e:/\*{5}$/}]},{cN:"addition",b:"^\\+",e:"$"},{cN:"deletion",b:"^\\-",e:"$"},{cN:"addition",b:"^\\!",e:"$"}]}}),e.registerLanguage("http",function(e){var t="HTTP/[0-9\\.]+";return{aliases:["https"],i:"\\S",c:[{b:"^"+t,e:"$",c:[{cN:"number",b:"\\b\\d{3}\\b"}]},{b:"^[A-Z]+ (.*?) "+t+"$",rB:!0,e:"$",c:[{cN:"string",b:" ",e:" ",eB:!0,eE:!0},{b:t},{cN:"keyword",b:"[A-Z]+"}]},{cN:"attribute",b:"^\\w",e:": ",eE:!0,i:"\\n|\\s|=",starts:{e:"$",r:0}},{b:"\\n\\n",starts:{sL:[],eW:!0}}]}}),e.registerLanguage("ini",function(e){var t={cN:"string",c:[e.BE],v:[{b:"'''",e:"'''",r:10},{b:'"""',e:'"""',r:10},{b:'"',e:'"'},{b:"'",e:"'"}]};return{aliases:["toml"],cI:!0,i:/\S/,c:[e.C(";","$"),e.HCM,{cN:"section",b:/^\s*\[+/,e:/\]+/},{b:/^[a-z0-9\[\]_-]+\s*=\s*/,e:"$",rB:!0,c:[{cN:"attr",b:/[a-z0-9\[\]_-]+/},{b:/=/,eW:!0,r:0,c:[{cN:"literal",b:/\bon|off|true|false|yes|no\b/},{cN:"variable",v:[{b:/\$[\w\d"][\w\d_]*/},{b:/\$\{(.*?)}/}]},t,{cN:"number",b:/([\+\-]+)?[\d]+_[\d_]+/},e.NM]}]}]}}),e.registerLanguage("java",function(e){var t="[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*",r=t+"(<"+t+"(\\s*,\\s*"+t+")*>)?",a="false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports do",n="\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\d]+[\\d_]+[\\d]+|[\\d]+)(\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))?|\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))([eE][-+]?\\d+)?)[lLfF]?",i={cN:"number",b:n,r:0};return{aliases:["jsp"],k:a,i:/<\/|#/,c:[e.C("/\\*\\*","\\*/",{r:0,c:[{b:/\w+@/,r:0},{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:"class",bK:"class interface",e:/[{;=]/,eE:!0,k:"class interface",i:/[:"\[\]]/,c:[{bK:"extends implements"},e.UTM]},{bK:"new throw return else",r:0},{cN:"function",b:"("+r+"\\s+)+"+e.UIR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:a,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"params",b:/\(/,e:/\)/,k:a,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},i,{cN:"meta",b:"@[A-Za-z]+"}]}}),e.registerLanguage("javascript",function(e){var t="[A-Za-z$_][0-9A-Za-z$_]*",r={keyword:"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await static import from as",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise"},a={cN:"number",v:[{b:"\\b(0[bB][01]+)"},{b:"\\b(0[oO][0-7]+)"},{b:e.CNR}],r:0},n={cN:"subst",b:"\\$\\{",e:"\\}",k:r,c:[]},i={cN:"string",b:"`",e:"`",c:[e.BE,n]};n.c=[e.ASM,e.QSM,i,a,e.RM];var s=n.c.concat([e.CBCM,e.CLCM]);return{aliases:["js","jsx"],k:r,c:[{cN:"meta",r:10,b:/^\s*['"]use (strict|asm)['"]/},{cN:"meta",b:/^#!/,e:/$/},e.ASM,e.QSM,i,e.CLCM,e.CBCM,a,{b:/[{,]\s*/,r:0,c:[{b:t+"\\s*:",rB:!0,r:0,c:[{cN:"attr",b:t,r:0}]}]},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM,{cN:"function",b:"(\\(.*?\\)|"+t+")\\s*=>",rB:!0,e:"\\s*=>",c:[{cN:"params",v:[{b:t},{b:/\(\s*\)/},{b:/\(/,e:/\)/,eB:!0,eE:!0,k:r,c:s}]}]},{b://,sL:"xml",c:[{b:/<\w+\s*\/>/,skip:!0},{b:/<\w+/,e:/(\/\w+|\w+\/)>/,skip:!0,c:[{b:/<\w+\s*\/>/,skip:!0},"self"]}]}],r:0},{cN:"function",bK:"function",e:/\{/,eE:!0,c:[e.inherit(e.TM,{b:t}),{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,c:s}],i:/\[|%/},{b:/\$[(.]/},e.METHOD_GUARD,{cN:"class",bK:"class",e:/[{;=]/,eE:!0,i:/[:"\[\]]/,c:[{bK:"extends"},e.UTM]},{bK:"constructor",e:/\{/,eE:!0}],i:/#(?!!)/}}),e.registerLanguage("json",function(e){var t={literal:"true false null"},r=[e.QSM,e.CNM],a={e:",",eW:!0,eE:!0,c:r,k:t},n={b:"{",e:"}",c:[{cN:"attr",b:/"/,e:/"/,c:[e.BE],i:"\\n"},e.inherit(a,{b:/:/})],i:"\\S"},i={b:"\\[",e:"\\]",c:[e.inherit(a)],i:"\\S"};return r.splice(r.length,0,n,i),{c:r,k:t,i:"\\S"}}),e.registerLanguage("makefile",function(e){var t={cN:"variable",v:[{b:"\\$\\("+e.UIR+"\\)",c:[e.BE]},{b:/\$[@%`]+/}]}]}]};return{aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist"],cI:!0,c:[{cN:"meta",b:"",r:10,c:[{b:"\\[",e:"\\]"}]},e.C("",{r:10}),{b:"<\\!\\[CDATA\\[",e:"\\]\\]>",r:10},{b:/<\?(php)?/,e:/\?>/,sL:"php",c:[{b:"/\\*",e:"\\*/",skip:!0}]},{cN:"tag",b:"|$)",e:">",k:{name:"style"},c:[r],starts:{e:"",rE:!0,sL:["css","xml"]}},{cN:"tag",b:"|$)",e:">",k:{name:"script"},c:[r],starts:{e:"",rE:!0,sL:["actionscript","javascript","handlebars","xml"]}},{cN:"meta",v:[{b:/<\?xml/,e:/\?>/,r:10},{b:/<\?\w+/,e:/\?>/}]},{cN:"tag",b:"",c:[{cN:"name",b:/[^\/><\s]+/,r:0},r]}]}}),e.registerLanguage("markdown",function(e){return{aliases:["md","mkdown","mkd"],c:[{cN:"section",v:[{b:"^#{1,6}",e:"$"},{b:"^.+?\\n[=-]{2,}$"}]},{b:"<",e:">",sL:"xml",r:0},{cN:"bullet",b:"^([*+-]|(\\d+\\.))\\s+"},{cN:"strong",b:"[*_]{2}.+?[*_]{2}"},{cN:"emphasis",v:[{b:"\\*.+?\\*"},{b:"_.+?_",r:0}]},{cN:"quote",b:"^>\\s+",e:"$"},{cN:"code",v:[{b:"^```w*s*$",e:"^```s*$"},{b:"`.+?`"},{b:"^( {4}| )",e:"$",r:0}]},{b:"^[-\\*]{3,}",e:"$"},{b:"\\[.+?\\][\\(\\[].*?[\\)\\]]",rB:!0,c:[{cN:"string",b:"\\[",e:"\\]",eB:!0,rE:!0,r:0},{cN:"link",b:"\\]\\(",e:"\\)",eB:!0,eE:!0},{cN:"symbol",b:"\\]\\[",e:"\\]",eB:!0,eE:!0}],r:10},{b:/^\[[^\n]+\]:/,rB:!0,c:[{cN:"symbol",b:/\[/,e:/\]/,eB:!0,eE:!0},{cN:"link",b:/:\s*/,e:/$/,eB:!0}]}]}}),e.registerLanguage("nginx",function(e){var t={cN:"variable",v:[{b:/\$\d+/},{b:/\$\{/,e:/}/},{b:"[\\$\\@]"+e.UIR}]},r={eW:!0,l:"[a-z/_]+",k:{literal:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll"},r:0,i:"=>",c:[e.HCM,{cN:"string",c:[e.BE,t],v:[{b:/"/,e:/"/},{b:/'/,e:/'/}]},{b:"([a-z]+):/",e:"\\s",eW:!0,eE:!0,c:[t]},{cN:"regexp",c:[e.BE,t],v:[{b:"\\s\\^",e:"\\s|{|;",rE:!0},{b:"~\\*?\\s+",e:"\\s|{|;",rE:!0},{b:"\\*(\\.[a-z\\-]+)+"},{b:"([a-z\\-]+\\.)+\\*"}]},{cN:"number",b:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{cN:"number",b:"\\b\\d+[kKmMgGdshdwy]*\\b",r:0},t]};return{aliases:["nginxconf"],c:[e.HCM,{b:e.UIR+"\\s+{",rB:!0,e:"{",c:[{cN:"section",b:e.UIR}],r:0},{b:e.UIR+"\\s",e:";|{",rB:!0,c:[{cN:"attribute",b:e.UIR,starts:r}],r:0}],i:"[^\\s\\}]"}}),e.registerLanguage("objectivec",function(e){var t={cN:"built_in",b:"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"},r={keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN",literal:"false true FALSE TRUE nil YES NO NULL",built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"},a=/[a-zA-Z@][a-zA-Z0-9_]*/,n="@interface @class @protocol @implementation";return{aliases:["mm","objc","obj-c"],k:r,l:a,i:""}]}]},{cN:"class",b:"("+n.split(" ").join("|")+")\\b",e:"({|$)",eE:!0,k:n,l:a,c:[e.UTM]},{b:"\\."+e.UIR,r:0}]}}),e.registerLanguage("perl",function(e){var t="getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when",r={cN:"subst",b:"[$@]\\{",e:"\\}",k:t},a={b:"->{",e:"}"},n={v:[{b:/\$\d/},{b:/[\$%@](\^\w\b|#\w+(::\w+)*|{\w+}|\w+(::\w*)*)/},{b:/[\$%@][^\s\w{]/,r:0}]},i=[e.BE,r,n],s=[n,e.HCM,e.C("^\\=\\w","\\=cut",{eW:!0}),a,{cN:"string",c:i,v:[{b:"q[qwxr]?\\s*\\(",e:"\\)",r:5},{b:"q[qwxr]?\\s*\\[",e:"\\]",r:5},{b:"q[qwxr]?\\s*\\{",e:"\\}",r:5},{b:"q[qwxr]?\\s*\\|",e:"\\|",r:5},{b:"q[qwxr]?\\s*\\<",e:"\\>",r:5},{b:"qw\\s+q",e:"q",r:5},{b:"'",e:"'",c:[e.BE]},{b:'"',e:'"'},{b:"`",e:"`",c:[e.BE]},{b:"{\\w+}",c:[],r:0},{b:"-?\\w+\\s*\\=\\>",c:[],r:0}]},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\/\\/|"+e.RSR+"|\\b(split|return|print|reverse|grep)\\b)\\s*",k:"split return print reverse grep",r:0,c:[e.HCM,{cN:"regexp",b:"(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*",r:10},{cN:"regexp",b:"(m|qr)?/",e:"/[a-z]*",c:[e.BE],r:0}]},{cN:"function",bK:"sub",e:"(\\s*\\(.*?\\))?[;{]",eE:!0,r:5,c:[e.TM]},{b:"-\\w\\b",r:0},{b:"^__DATA__$",e:"^__END__$",sL:"mojolicious",c:[{b:"^@@.*",e:"$",cN:"comment"}]}];return r.c=s,a.c=s,{aliases:["pl","pm"],l:/[\w\.]+/,k:t,c:s}}),e.registerLanguage("php",function(e){var t={b:"\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*"},r={cN:"meta",b:/<\?(php)?|\?>/},a={cN:"string",c:[e.BE,r],v:[{b:'b"',e:'"'},{b:"b'",e:"'"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},n={v:[e.BNM,e.CNM]};return{aliases:["php3","php4","php5","php6"],cI:!0,k:"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally",c:[e.HCM,e.C("//","$",{c:[r]}),e.C("/\\*","\\*/",{c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.C("__halt_compiler.+?;",!1,{eW:!0,k:"__halt_compiler",l:e.UIR}),{cN:"string",b:/<<<['"]?\w+['"]?$/,e:/^\w+;?$/,c:[e.BE,{cN:"subst",v:[{b:/\$\w+/},{b:/\{\$/,e:/\}/}]}]},r,{cN:"keyword",b:/\$this\b/},t,{b:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{cN:"function",bK:"function",e:/[;{]/,eE:!0,i:"\\$|\\[|%",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)",c:["self",t,e.CBCM,a,n]}]},{cN:"class",bK:"class interface",e:"{",eE:!0,i:/[:\(\$"]/,c:[{bK:"extends implements"},e.UTM]},{bK:"namespace",e:";",i:/[\.']/,c:[e.UTM]},{bK:"use",e:";",c:[e.UTM]},{b:"=>"},a,n]}}),e.registerLanguage("python",function(e){var t={keyword:"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10 None True False",built_in:"Ellipsis NotImplemented"},r={cN:"meta",b:/^(>>>|\.\.\.) /},a={cN:"subst",b:/\{/,e:/\}/,k:t,i:/#/},n={cN:"string",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[r],r:10},{b:/(u|b)?r?"""/,e:/"""/,c:[r],r:10},{b:/(fr|rf|f)'''/,e:/'''/,c:[r,a]},{b:/(fr|rf|f)"""/,e:/"""/,c:[r,a]},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)"/,e:/"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)"/,e:/"/},{b:/(fr|rf|f)'/,e:/'/,c:[a]},{b:/(fr|rf|f)"/,e:/"/,c:[a]},e.ASM,e.QSM]},i={cN:"number",r:0,v:[{b:e.BNR+"[lLjJ]?"},{b:"\\b(0o[0-7]+)[lLjJ]?"},{b:e.CNR+"[lLjJ]?"}]},s={cN:"params",b:/\(/,e:/\)/,c:["self",r,i,n]};return a.c=[n,i,r],{aliases:["py","gyp"],k:t,i:/(<\/|->|\?)|=>/,c:[r,i,n,e.HCM,{v:[{cN:"function",bK:"def"},{cN:"class",bK:"class"}],e:/:/,i:/[${=;\n,]/,c:[e.UTM,s,{b:/->/,eW:!0,k:"None"}]},{cN:"meta",b:/^[\t ]*@/,e:/$/},{b:/\b(print|exec)\(/}]}}),e.registerLanguage("ruby",function(e){var t="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",r={ 3 | keyword:"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor",literal:"true false nil"},a={cN:"doctag",b:"@[A-Za-z]+"},n={b:"#<",e:">"},i=[e.C("#","$",{c:[a]}),e.C("^\\=begin","^\\=end",{c:[a],r:10}),e.C("^__END__","\\n$")],s={cN:"subst",b:"#\\{",e:"}",k:r},c={cN:"string",c:[e.BE,s],v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/`/,e:/`/},{b:"%[qQwWx]?\\(",e:"\\)"},{b:"%[qQwWx]?\\[",e:"\\]"},{b:"%[qQwWx]?{",e:"}"},{b:"%[qQwWx]?<",e:">"},{b:"%[qQwWx]?/",e:"/"},{b:"%[qQwWx]?%",e:"%"},{b:"%[qQwWx]?-",e:"-"},{b:"%[qQwWx]?\\|",e:"\\|"},{b:/\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/},{b:/<<(-?)\w+$/,e:/^\s*\w+$/}]},o={cN:"params",b:"\\(",e:"\\)",endsParent:!0,k:r},l=[c,n,{cN:"class",bK:"class module",e:"$|;",i:/=/,c:[e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{b:"<\\s*",c:[{b:"("+e.IR+"::)?"+e.IR}]}].concat(i)},{cN:"function",bK:"def",e:"$|;",c:[e.inherit(e.TM,{b:t}),o].concat(i)},{b:e.IR+"::"},{cN:"symbol",b:e.UIR+"(\\!|\\?)?:",r:0},{cN:"symbol",b:":(?!\\s)",c:[c,{b:t}],r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{cN:"params",b:/\|/,e:/\|/,k:r},{b:"("+e.RSR+"|unless)\\s*",k:"unless",c:[n,{cN:"regexp",c:[e.BE,s],i:/\n/,v:[{b:"/",e:"/[a-z]*"},{b:"%r{",e:"}[a-z]*"},{b:"%r\\(",e:"\\)[a-z]*"},{b:"%r!",e:"![a-z]*"},{b:"%r\\[",e:"\\][a-z]*"}]}].concat(i),r:0}].concat(i);s.c=l,o.c=l;var u="[>?]>",d="[\\w#]+\\(\\w+\\):\\d+:\\d+>",b="(\\w+-)?\\d+\\.\\d+\\.\\d(p\\d+)?[^>]+>",p=[{b:/^\s*=>/,starts:{e:"$",c:l}},{cN:"meta",b:"^("+u+"|"+d+"|"+b+")",starts:{e:"$",c:l}}];return{aliases:["rb","gemspec","podspec","thor","irb"],k:r,i:/\/\*/,c:i.concat(p).concat(l)}}),e.registerLanguage("shell",function(e){return{aliases:["console"],c:[{cN:"meta",b:"^\\s{0,3}[\\w\\d\\[\\]()@-]*[>%$#]",starts:{e:"$",sL:"bash"}}]}}),e.registerLanguage("sql",function(e){var t=e.C("--","$");return{cI:!0,i:/[<>{}*#]/,c:[{bK:"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke comment",e:/;/,eW:!0,l:/[\w\.]+/,k:{keyword:"abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias allocate allow alter always analyze ancillary and any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound buffer_cache buffer_pool build bulk by byte byteordermark bytes cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain export export_set extended extent external external_1 external_2 externally extract failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour http id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists keep keep_duplicates key keys kill language large last last_day last_insert_id last_value lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second section securefile security seed segment select self sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime table tables tablespace tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek",literal:"true false null",built_in:"array bigint binary bit blob boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text varchar varying void"},c:[{cN:"string",b:"'",e:"'",c:[e.BE,{b:"''"}]},{cN:"string",b:'"',e:'"',c:[e.BE,{b:'""'}]},{cN:"string",b:"`",e:"`",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}}),e}); -------------------------------------------------------------------------------- /src/static/katex.min.css: -------------------------------------------------------------------------------- 1 | @font-face{font-family:KaTeX_AMS;font-style:normal;font-weight:400;src:url(fonts/KaTeX_AMS-Regular.woff2) format("woff2"),url(fonts/KaTeX_AMS-Regular.woff) format("woff"),url(fonts/KaTeX_AMS-Regular.ttf) format("truetype")}@font-face{font-family:KaTeX_Caligraphic;font-style:normal;font-weight:700;src:url(fonts/KaTeX_Caligraphic-Bold.woff2) format("woff2"),url(fonts/KaTeX_Caligraphic-Bold.woff) format("woff"),url(fonts/KaTeX_Caligraphic-Bold.ttf) format("truetype")}@font-face{font-family:KaTeX_Caligraphic;font-style:normal;font-weight:400;src:url(fonts/KaTeX_Caligraphic-Regular.woff2) format("woff2"),url(fonts/KaTeX_Caligraphic-Regular.woff) format("woff"),url(fonts/KaTeX_Caligraphic-Regular.ttf) format("truetype")}@font-face{font-family:KaTeX_Fraktur;font-style:normal;font-weight:700;src:url(fonts/KaTeX_Fraktur-Bold.woff2) format("woff2"),url(fonts/KaTeX_Fraktur-Bold.woff) format("woff"),url(fonts/KaTeX_Fraktur-Bold.ttf) format("truetype")}@font-face{font-family:KaTeX_Fraktur;font-style:normal;font-weight:400;src:url(fonts/KaTeX_Fraktur-Regular.woff2) format("woff2"),url(fonts/KaTeX_Fraktur-Regular.woff) format("woff"),url(fonts/KaTeX_Fraktur-Regular.ttf) format("truetype")}@font-face{font-family:KaTeX_Main;font-style:normal;font-weight:700;src:url(fonts/KaTeX_Main-Bold.woff2) format("woff2"),url(fonts/KaTeX_Main-Bold.woff) format("woff"),url(fonts/KaTeX_Main-Bold.ttf) format("truetype")}@font-face{font-family:KaTeX_Main;font-style:italic;font-weight:700;src:url(fonts/KaTeX_Main-BoldItalic.woff2) format("woff2"),url(fonts/KaTeX_Main-BoldItalic.woff) format("woff"),url(fonts/KaTeX_Main-BoldItalic.ttf) format("truetype")}@font-face{font-family:KaTeX_Main;font-style:italic;font-weight:400;src:url(fonts/KaTeX_Main-Italic.woff2) format("woff2"),url(fonts/KaTeX_Main-Italic.woff) format("woff"),url(fonts/KaTeX_Main-Italic.ttf) format("truetype")}@font-face{font-family:KaTeX_Main;font-style:normal;font-weight:400;src:url(fonts/KaTeX_Main-Regular.woff2) format("woff2"),url(fonts/KaTeX_Main-Regular.woff) format("woff"),url(fonts/KaTeX_Main-Regular.ttf) format("truetype")}@font-face{font-family:KaTeX_Math;font-style:italic;font-weight:700;src:url(fonts/KaTeX_Math-BoldItalic.woff2) format("woff2"),url(fonts/KaTeX_Math-BoldItalic.woff) format("woff"),url(fonts/KaTeX_Math-BoldItalic.ttf) format("truetype")}@font-face{font-family:KaTeX_Math;font-style:italic;font-weight:400;src:url(fonts/KaTeX_Math-Italic.woff2) format("woff2"),url(fonts/KaTeX_Math-Italic.woff) format("woff"),url(fonts/KaTeX_Math-Italic.ttf) format("truetype")}@font-face{font-family:"KaTeX_SansSerif";font-style:normal;font-weight:700;src:url(fonts/KaTeX_SansSerif-Bold.woff2) format("woff2"),url(fonts/KaTeX_SansSerif-Bold.woff) format("woff"),url(fonts/KaTeX_SansSerif-Bold.ttf) format("truetype")}@font-face{font-family:"KaTeX_SansSerif";font-style:italic;font-weight:400;src:url(fonts/KaTeX_SansSerif-Italic.woff2) format("woff2"),url(fonts/KaTeX_SansSerif-Italic.woff) format("woff"),url(fonts/KaTeX_SansSerif-Italic.ttf) format("truetype")}@font-face{font-family:"KaTeX_SansSerif";font-style:normal;font-weight:400;src:url(fonts/KaTeX_SansSerif-Regular.woff2) format("woff2"),url(fonts/KaTeX_SansSerif-Regular.woff) format("woff"),url(fonts/KaTeX_SansSerif-Regular.ttf) format("truetype")}@font-face{font-family:KaTeX_Script;font-style:normal;font-weight:400;src:url(fonts/KaTeX_Script-Regular.woff2) format("woff2"),url(fonts/KaTeX_Script-Regular.woff) format("woff"),url(fonts/KaTeX_Script-Regular.ttf) format("truetype")}@font-face{font-family:KaTeX_Size1;font-style:normal;font-weight:400;src:url(fonts/KaTeX_Size1-Regular.woff2) format("woff2"),url(fonts/KaTeX_Size1-Regular.woff) format("woff"),url(fonts/KaTeX_Size1-Regular.ttf) format("truetype")}@font-face{font-family:KaTeX_Size2;font-style:normal;font-weight:400;src:url(fonts/KaTeX_Size2-Regular.woff2) format("woff2"),url(fonts/KaTeX_Size2-Regular.woff) format("woff"),url(fonts/KaTeX_Size2-Regular.ttf) format("truetype")}@font-face{font-family:KaTeX_Size3;font-style:normal;font-weight:400;src:url(fonts/KaTeX_Size3-Regular.woff2) format("woff2"),url(fonts/KaTeX_Size3-Regular.woff) format("woff"),url(fonts/KaTeX_Size3-Regular.ttf) format("truetype")}@font-face{font-family:KaTeX_Size4;font-style:normal;font-weight:400;src:url(fonts/KaTeX_Size4-Regular.woff2) format("woff2"),url(fonts/KaTeX_Size4-Regular.woff) format("woff"),url(fonts/KaTeX_Size4-Regular.ttf) format("truetype")}@font-face{font-family:KaTeX_Typewriter;font-style:normal;font-weight:400;src:url(fonts/KaTeX_Typewriter-Regular.woff2) format("woff2"),url(fonts/KaTeX_Typewriter-Regular.woff) format("woff"),url(fonts/KaTeX_Typewriter-Regular.ttf) format("truetype")}.katex{font:normal 1.21em KaTeX_Main,Times New Roman,serif;line-height:1.2;text-indent:0;text-rendering:auto}.katex *{-ms-high-contrast-adjust:none!important}.katex .katex-mathml{border:0;clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;padding:0;position:absolute;width:1px}.katex .katex-html>.newline{display:block}.katex .base{position:relative;white-space:nowrap;width:min-content}.katex .base,.katex .strut{display:inline-block}.katex .textbf{font-weight:700}.katex .textit{font-style:italic}.katex .textrm{font-family:KaTeX_Main}.katex .textsf{font-family:KaTeX_SansSerif}.katex .texttt{font-family:KaTeX_Typewriter}.katex .mathit{font-family:KaTeX_Math;font-style:italic}.katex .mathrm{font-style:normal}.katex .mathbf{font-family:KaTeX_Main;font-weight:700}.katex .boldsymbol{font-family:KaTeX_Math;font-style:italic;font-weight:700}.katex .amsrm,.katex .mathbb,.katex .textbb{font-family:KaTeX_AMS}.katex .mathcal{font-family:KaTeX_Caligraphic}.katex .mathfrak,.katex .textfrak{font-family:KaTeX_Fraktur}.katex .mathtt{font-family:KaTeX_Typewriter}.katex .mathscr,.katex .textscr{font-family:KaTeX_Script}.katex .mathsf,.katex .textsf{font-family:KaTeX_SansSerif}.katex .mathboldsf,.katex .textboldsf{font-family:KaTeX_SansSerif;font-weight:700}.katex .mathitsf,.katex .textitsf{font-family:KaTeX_SansSerif;font-style:italic}.katex .mainit{font-family:KaTeX_Main;font-style:italic}.katex .mainrm{font-family:KaTeX_Main;font-style:normal}.katex .vlist-t{display:inline-table;table-layout:fixed}.katex .vlist-r{display:table-row}.katex .vlist{display:table-cell;position:relative;vertical-align:bottom}.katex .vlist>span{display:block;height:0;position:relative}.katex .vlist>span>span{display:inline-block}.katex .vlist>span>.pstrut{overflow:hidden;width:0}.katex .vlist-t2{margin-right:-2px}.katex .vlist-s{display:table-cell;font-size:1px;min-width:2px;vertical-align:bottom;width:2px}.katex .msupsub{text-align:left}.katex .mfrac>span>span{text-align:center}.katex .mfrac .frac-line{border-bottom-style:solid;display:inline-block;width:100%}.katex .hdashline,.katex .hline,.katex .mfrac .frac-line,.katex .overline .overline-line,.katex .rule,.katex .underline .underline-line{min-height:1px}.katex .mspace{display:inline-block}.katex .clap,.katex .llap,.katex .rlap{position:relative;width:0}.katex .clap>.inner,.katex .llap>.inner,.katex .rlap>.inner{position:absolute}.katex .clap>.fix,.katex .llap>.fix,.katex .rlap>.fix{display:inline-block}.katex .llap>.inner{right:0}.katex .clap>.inner,.katex .rlap>.inner{left:0}.katex .clap>.inner>span{margin-left:-50%;margin-right:50%}.katex .rule{border:0 solid;display:inline-block;position:relative}.katex .hline,.katex .overline .overline-line,.katex .underline .underline-line{border-bottom-style:solid;display:inline-block;width:100%}.katex .hdashline{border-bottom-style:dashed;display:inline-block;width:100%}.katex .sqrt>.root{margin-left:.27777778em;margin-right:-.55555556em}.katex .fontsize-ensurer,.katex .sizing{display:inline-block}.katex .fontsize-ensurer.reset-size1.size1,.katex .sizing.reset-size1.size1{font-size:1em}.katex .fontsize-ensurer.reset-size1.size2,.katex .sizing.reset-size1.size2{font-size:1.2em}.katex .fontsize-ensurer.reset-size1.size3,.katex .sizing.reset-size1.size3{font-size:1.4em}.katex .fontsize-ensurer.reset-size1.size4,.katex .sizing.reset-size1.size4{font-size:1.6em}.katex .fontsize-ensurer.reset-size1.size5,.katex .sizing.reset-size1.size5{font-size:1.8em}.katex .fontsize-ensurer.reset-size1.size6,.katex .sizing.reset-size1.size6{font-size:2em}.katex .fontsize-ensurer.reset-size1.size7,.katex .sizing.reset-size1.size7{font-size:2.4em}.katex .fontsize-ensurer.reset-size1.size8,.katex .sizing.reset-size1.size8{font-size:2.88em}.katex .fontsize-ensurer.reset-size1.size9,.katex .sizing.reset-size1.size9{font-size:3.456em}.katex .fontsize-ensurer.reset-size1.size10,.katex .sizing.reset-size1.size10{font-size:4.148em}.katex .fontsize-ensurer.reset-size1.size11,.katex .sizing.reset-size1.size11{font-size:4.976em}.katex .fontsize-ensurer.reset-size2.size1,.katex .sizing.reset-size2.size1{font-size:.83333333em}.katex .fontsize-ensurer.reset-size2.size2,.katex .sizing.reset-size2.size2{font-size:1em}.katex .fontsize-ensurer.reset-size2.size3,.katex .sizing.reset-size2.size3{font-size:1.16666667em}.katex .fontsize-ensurer.reset-size2.size4,.katex .sizing.reset-size2.size4{font-size:1.33333333em}.katex .fontsize-ensurer.reset-size2.size5,.katex .sizing.reset-size2.size5{font-size:1.5em}.katex .fontsize-ensurer.reset-size2.size6,.katex .sizing.reset-size2.size6{font-size:1.66666667em}.katex .fontsize-ensurer.reset-size2.size7,.katex .sizing.reset-size2.size7{font-size:2em}.katex .fontsize-ensurer.reset-size2.size8,.katex .sizing.reset-size2.size8{font-size:2.4em}.katex .fontsize-ensurer.reset-size2.size9,.katex .sizing.reset-size2.size9{font-size:2.88em}.katex .fontsize-ensurer.reset-size2.size10,.katex .sizing.reset-size2.size10{font-size:3.45666667em}.katex .fontsize-ensurer.reset-size2.size11,.katex .sizing.reset-size2.size11{font-size:4.14666667em}.katex .fontsize-ensurer.reset-size3.size1,.katex .sizing.reset-size3.size1{font-size:.71428571em}.katex .fontsize-ensurer.reset-size3.size2,.katex .sizing.reset-size3.size2{font-size:.85714286em}.katex .fontsize-ensurer.reset-size3.size3,.katex .sizing.reset-size3.size3{font-size:1em}.katex .fontsize-ensurer.reset-size3.size4,.katex .sizing.reset-size3.size4{font-size:1.14285714em}.katex .fontsize-ensurer.reset-size3.size5,.katex .sizing.reset-size3.size5{font-size:1.28571429em}.katex .fontsize-ensurer.reset-size3.size6,.katex .sizing.reset-size3.size6{font-size:1.42857143em}.katex .fontsize-ensurer.reset-size3.size7,.katex .sizing.reset-size3.size7{font-size:1.71428571em}.katex .fontsize-ensurer.reset-size3.size8,.katex .sizing.reset-size3.size8{font-size:2.05714286em}.katex .fontsize-ensurer.reset-size3.size9,.katex .sizing.reset-size3.size9{font-size:2.46857143em}.katex .fontsize-ensurer.reset-size3.size10,.katex .sizing.reset-size3.size10{font-size:2.96285714em}.katex .fontsize-ensurer.reset-size3.size11,.katex .sizing.reset-size3.size11{font-size:3.55428571em}.katex .fontsize-ensurer.reset-size4.size1,.katex .sizing.reset-size4.size1{font-size:.625em}.katex .fontsize-ensurer.reset-size4.size2,.katex .sizing.reset-size4.size2{font-size:.75em}.katex .fontsize-ensurer.reset-size4.size3,.katex .sizing.reset-size4.size3{font-size:.875em}.katex .fontsize-ensurer.reset-size4.size4,.katex .sizing.reset-size4.size4{font-size:1em}.katex .fontsize-ensurer.reset-size4.size5,.katex .sizing.reset-size4.size5{font-size:1.125em}.katex .fontsize-ensurer.reset-size4.size6,.katex .sizing.reset-size4.size6{font-size:1.25em}.katex .fontsize-ensurer.reset-size4.size7,.katex .sizing.reset-size4.size7{font-size:1.5em}.katex .fontsize-ensurer.reset-size4.size8,.katex .sizing.reset-size4.size8{font-size:1.8em}.katex .fontsize-ensurer.reset-size4.size9,.katex .sizing.reset-size4.size9{font-size:2.16em}.katex .fontsize-ensurer.reset-size4.size10,.katex .sizing.reset-size4.size10{font-size:2.5925em}.katex .fontsize-ensurer.reset-size4.size11,.katex .sizing.reset-size4.size11{font-size:3.11em}.katex .fontsize-ensurer.reset-size5.size1,.katex .sizing.reset-size5.size1{font-size:.55555556em}.katex .fontsize-ensurer.reset-size5.size2,.katex .sizing.reset-size5.size2{font-size:.66666667em}.katex .fontsize-ensurer.reset-size5.size3,.katex .sizing.reset-size5.size3{font-size:.77777778em}.katex .fontsize-ensurer.reset-size5.size4,.katex .sizing.reset-size5.size4{font-size:.88888889em}.katex .fontsize-ensurer.reset-size5.size5,.katex .sizing.reset-size5.size5{font-size:1em}.katex .fontsize-ensurer.reset-size5.size6,.katex .sizing.reset-size5.size6{font-size:1.11111111em}.katex .fontsize-ensurer.reset-size5.size7,.katex .sizing.reset-size5.size7{font-size:1.33333333em}.katex .fontsize-ensurer.reset-size5.size8,.katex .sizing.reset-size5.size8{font-size:1.6em}.katex .fontsize-ensurer.reset-size5.size9,.katex .sizing.reset-size5.size9{font-size:1.92em}.katex .fontsize-ensurer.reset-size5.size10,.katex .sizing.reset-size5.size10{font-size:2.30444444em}.katex .fontsize-ensurer.reset-size5.size11,.katex .sizing.reset-size5.size11{font-size:2.76444444em}.katex .fontsize-ensurer.reset-size6.size1,.katex .sizing.reset-size6.size1{font-size:.5em}.katex .fontsize-ensurer.reset-size6.size2,.katex .sizing.reset-size6.size2{font-size:.6em}.katex .fontsize-ensurer.reset-size6.size3,.katex .sizing.reset-size6.size3{font-size:.7em}.katex .fontsize-ensurer.reset-size6.size4,.katex .sizing.reset-size6.size4{font-size:.8em}.katex .fontsize-ensurer.reset-size6.size5,.katex .sizing.reset-size6.size5{font-size:.9em}.katex .fontsize-ensurer.reset-size6.size6,.katex .sizing.reset-size6.size6{font-size:1em}.katex .fontsize-ensurer.reset-size6.size7,.katex .sizing.reset-size6.size7{font-size:1.2em}.katex .fontsize-ensurer.reset-size6.size8,.katex .sizing.reset-size6.size8{font-size:1.44em}.katex .fontsize-ensurer.reset-size6.size9,.katex .sizing.reset-size6.size9{font-size:1.728em}.katex .fontsize-ensurer.reset-size6.size10,.katex .sizing.reset-size6.size10{font-size:2.074em}.katex .fontsize-ensurer.reset-size6.size11,.katex .sizing.reset-size6.size11{font-size:2.488em}.katex .fontsize-ensurer.reset-size7.size1,.katex .sizing.reset-size7.size1{font-size:.41666667em}.katex .fontsize-ensurer.reset-size7.size2,.katex .sizing.reset-size7.size2{font-size:.5em}.katex .fontsize-ensurer.reset-size7.size3,.katex .sizing.reset-size7.size3{font-size:.58333333em}.katex .fontsize-ensurer.reset-size7.size4,.katex .sizing.reset-size7.size4{font-size:.66666667em}.katex .fontsize-ensurer.reset-size7.size5,.katex .sizing.reset-size7.size5{font-size:.75em}.katex .fontsize-ensurer.reset-size7.size6,.katex .sizing.reset-size7.size6{font-size:.83333333em}.katex .fontsize-ensurer.reset-size7.size7,.katex .sizing.reset-size7.size7{font-size:1em}.katex .fontsize-ensurer.reset-size7.size8,.katex .sizing.reset-size7.size8{font-size:1.2em}.katex .fontsize-ensurer.reset-size7.size9,.katex .sizing.reset-size7.size9{font-size:1.44em}.katex .fontsize-ensurer.reset-size7.size10,.katex .sizing.reset-size7.size10{font-size:1.72833333em}.katex .fontsize-ensurer.reset-size7.size11,.katex .sizing.reset-size7.size11{font-size:2.07333333em}.katex .fontsize-ensurer.reset-size8.size1,.katex .sizing.reset-size8.size1{font-size:.34722222em}.katex .fontsize-ensurer.reset-size8.size2,.katex .sizing.reset-size8.size2{font-size:.41666667em}.katex .fontsize-ensurer.reset-size8.size3,.katex .sizing.reset-size8.size3{font-size:.48611111em}.katex .fontsize-ensurer.reset-size8.size4,.katex .sizing.reset-size8.size4{font-size:.55555556em}.katex .fontsize-ensurer.reset-size8.size5,.katex .sizing.reset-size8.size5{font-size:.625em}.katex .fontsize-ensurer.reset-size8.size6,.katex .sizing.reset-size8.size6{font-size:.69444444em}.katex .fontsize-ensurer.reset-size8.size7,.katex .sizing.reset-size8.size7{font-size:.83333333em}.katex .fontsize-ensurer.reset-size8.size8,.katex .sizing.reset-size8.size8{font-size:1em}.katex .fontsize-ensurer.reset-size8.size9,.katex .sizing.reset-size8.size9{font-size:1.2em}.katex .fontsize-ensurer.reset-size8.size10,.katex .sizing.reset-size8.size10{font-size:1.44027778em}.katex .fontsize-ensurer.reset-size8.size11,.katex .sizing.reset-size8.size11{font-size:1.72777778em}.katex .fontsize-ensurer.reset-size9.size1,.katex .sizing.reset-size9.size1{font-size:.28935185em}.katex .fontsize-ensurer.reset-size9.size2,.katex .sizing.reset-size9.size2{font-size:.34722222em}.katex .fontsize-ensurer.reset-size9.size3,.katex .sizing.reset-size9.size3{font-size:.40509259em}.katex .fontsize-ensurer.reset-size9.size4,.katex .sizing.reset-size9.size4{font-size:.46296296em}.katex .fontsize-ensurer.reset-size9.size5,.katex .sizing.reset-size9.size5{font-size:.52083333em}.katex .fontsize-ensurer.reset-size9.size6,.katex .sizing.reset-size9.size6{font-size:.5787037em}.katex .fontsize-ensurer.reset-size9.size7,.katex .sizing.reset-size9.size7{font-size:.69444444em}.katex .fontsize-ensurer.reset-size9.size8,.katex .sizing.reset-size9.size8{font-size:.83333333em}.katex .fontsize-ensurer.reset-size9.size9,.katex .sizing.reset-size9.size9{font-size:1em}.katex .fontsize-ensurer.reset-size9.size10,.katex .sizing.reset-size9.size10{font-size:1.20023148em}.katex .fontsize-ensurer.reset-size9.size11,.katex .sizing.reset-size9.size11{font-size:1.43981481em}.katex .fontsize-ensurer.reset-size10.size1,.katex .sizing.reset-size10.size1{font-size:.24108004em}.katex .fontsize-ensurer.reset-size10.size2,.katex .sizing.reset-size10.size2{font-size:.28929605em}.katex .fontsize-ensurer.reset-size10.size3,.katex .sizing.reset-size10.size3{font-size:.33751205em}.katex .fontsize-ensurer.reset-size10.size4,.katex .sizing.reset-size10.size4{font-size:.38572806em}.katex .fontsize-ensurer.reset-size10.size5,.katex .sizing.reset-size10.size5{font-size:.43394407em}.katex .fontsize-ensurer.reset-size10.size6,.katex .sizing.reset-size10.size6{font-size:.48216008em}.katex .fontsize-ensurer.reset-size10.size7,.katex .sizing.reset-size10.size7{font-size:.57859209em}.katex .fontsize-ensurer.reset-size10.size8,.katex .sizing.reset-size10.size8{font-size:.69431051em}.katex .fontsize-ensurer.reset-size10.size9,.katex .sizing.reset-size10.size9{font-size:.83317261em}.katex .fontsize-ensurer.reset-size10.size10,.katex .sizing.reset-size10.size10{font-size:1em}.katex .fontsize-ensurer.reset-size10.size11,.katex .sizing.reset-size10.size11{font-size:1.19961427em}.katex .fontsize-ensurer.reset-size11.size1,.katex .sizing.reset-size11.size1{font-size:.20096463em}.katex .fontsize-ensurer.reset-size11.size2,.katex .sizing.reset-size11.size2{font-size:.24115756em}.katex .fontsize-ensurer.reset-size11.size3,.katex .sizing.reset-size11.size3{font-size:.28135048em}.katex .fontsize-ensurer.reset-size11.size4,.katex .sizing.reset-size11.size4{font-size:.32154341em}.katex .fontsize-ensurer.reset-size11.size5,.katex .sizing.reset-size11.size5{font-size:.36173633em}.katex .fontsize-ensurer.reset-size11.size6,.katex .sizing.reset-size11.size6{font-size:.40192926em}.katex .fontsize-ensurer.reset-size11.size7,.katex .sizing.reset-size11.size7{font-size:.48231511em}.katex .fontsize-ensurer.reset-size11.size8,.katex .sizing.reset-size11.size8{font-size:.57877814em}.katex .fontsize-ensurer.reset-size11.size9,.katex .sizing.reset-size11.size9{font-size:.69453376em}.katex .fontsize-ensurer.reset-size11.size10,.katex .sizing.reset-size11.size10{font-size:.83360129em}.katex .fontsize-ensurer.reset-size11.size11,.katex .sizing.reset-size11.size11{font-size:1em}.katex .delimsizing.size1{font-family:KaTeX_Size1}.katex .delimsizing.size2{font-family:KaTeX_Size2}.katex .delimsizing.size3{font-family:KaTeX_Size3}.katex .delimsizing.size4{font-family:KaTeX_Size4}.katex .delimsizing.mult .delim-size1>span{font-family:KaTeX_Size1}.katex .delimsizing.mult .delim-size4>span{font-family:KaTeX_Size4}.katex .nulldelimiter{display:inline-block;width:.12em}.katex .delimcenter,.katex .op-symbol{position:relative}.katex .op-symbol.small-op{font-family:KaTeX_Size1}.katex .op-symbol.large-op{font-family:KaTeX_Size2}.katex .accent>.vlist-t,.katex .op-limits>.vlist-t{text-align:center}.katex .accent .accent-body{position:relative}.katex .accent .accent-body:not(.accent-full){width:0}.katex .overlay{display:block}.katex .mtable .vertical-separator{border-right:.05em solid;display:inline-block;margin:0 -.025em;min-width:1px}.katex .mtable .vs-dashed{border-right:.05em dashed}.katex .mtable .arraycolsep{display:inline-block}.katex .mtable .col-align-c>.vlist-t{text-align:center}.katex .mtable .col-align-l>.vlist-t{text-align:left}.katex .mtable .col-align-r>.vlist-t{text-align:right}.katex .svg-align{text-align:left}.katex svg{display:block;fill:currentColor;fill-opacity:1;fill-rule:nonzero;height:inherit;position:absolute;stroke:currentColor;stroke-dasharray:none;stroke-dashoffset:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-width:1;width:100%}.katex svg path{stroke:none}.katex .stretchy{display:block;overflow:hidden;position:relative;width:100%}.katex .stretchy:after,.katex .stretchy:before{content:""}.katex .hide-tail{overflow:hidden;position:relative;width:100%}.katex .halfarrow-left{left:0;overflow:hidden;position:absolute;width:50.2%}.katex .halfarrow-right{overflow:hidden;position:absolute;right:0;width:50.2%}.katex .brace-left{left:0;overflow:hidden;position:absolute;width:25.1%}.katex .brace-center{left:25%;overflow:hidden;position:absolute;width:50%}.katex .brace-right{overflow:hidden;position:absolute;right:0;width:25.1%}.katex .x-arrow-pad{padding:0 .5em}.katex .mover,.katex .munder,.katex .x-arrow{text-align:center}.katex .boxpad{padding:0 .3em}.katex .fbox{border:.04em solid #000;box-sizing:border-box}.katex .fcolorbox{border:.04em solid;box-sizing:border-box}.katex .cancel-pad{padding:0 .2em}.katex .cancel-lap{margin-left:-.2em;margin-right:-.2em}.katex .sout{border-bottom-style:solid;border-bottom-width:.08em}.katex-display{display:block;margin:1em 0;text-align:center}.katex-display>.katex{display:block;text-align:center;white-space:nowrap}.katex-display>.katex>.katex-html{display:block}.katex-display>.katex>.katex-html>.tag{position:absolute;right:0} 2 | -------------------------------------------------------------------------------- /src/static/smartmd.min.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8";.markdown-body{font-family:Helvetica Neue,Helvetica,Segoe UI,Arial,freesans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:1em;color:#333;line-height:1.6;word-wrap:break-word;padding:2.5em;border-radius:0 0 3px 3px}.markdown-body>:first-child{margin-top:0!important}.markdown-body>:last-child{margin-bottom:0!important}.markdown-body *{box-sizing:border-box}.markdown-body ol ol,.markdown-body ol ul,.markdown-body ol ul ol,.markdown-body ol ul ul,.markdown-body ul ol,.markdown-body ul ul,.markdown-body ul ul ol,.markdown-body ul ul ul{margin-top:0;margin-bottom:0}.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{margin-top:1em;margin-bottom:16px;font-weight:700;line-height:1.4}.markdown-body blockquote,.markdown-body dl,.markdown-body ol,.markdown-body p,.markdown-body pre,.markdown-body table,.markdown-body ul{margin-top:0;margin-bottom:16px}.markdown-body h1{margin:.67em 0;font-size:2.25em;line-height:1.2}.markdown-body h1,.markdown-body h2{padding-bottom:.3em;border-bottom:1px solid #eee}.markdown-body h2{font-size:1.75em;line-height:1.225}.markdown-body h3{font-size:1.5em;line-height:1.43}.markdown-body h4{font-size:1.25em}.markdown-body h5{font-size:1em}.markdown-body h6{font-size:1em;color:#777}.markdown-body ol,.markdown-body ul{padding-left:2em}.markdown-body ol ol,.markdown-body ul ol{list-style-type:lower-roman}.markdown-body ol ul,.markdown-body ul ul{list-style-type:circle}.markdown-body ol ul ul,.markdown-body ul ul ul{list-style-type:square}.markdown-body ol{list-style-type:decimal}.markdown-body ul{list-style-type:disc}.markdown-body blockquote{margin-left:0;margin-right:0;padding:0 15px;color:#777;border-left:4px solid #ddd}.markdown-body table{display:block;width:100%;overflow:auto;word-break:normal;word-break:keep-all;border-collapse:collapse;border-spacing:0}.markdown-body table tr{background-color:#fff;border-top:1px solid #ccc}.markdown-body table tr:nth-child(2n){background-color:#f8f8f8}.markdown-body table td,.markdown-body table th{padding:6px 13px;border:1px solid #ddd}.markdown-body pre{word-wrap:normal;padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f7f7f7;border-radius:3px}.markdown-body pre code{display:inline;max-width:none;padding:0;margin:0;overflow:initial;font-size:100%;line-height:inherit;word-wrap:normal;white-space:pre;border:0;border-radius:3px;background-color:transparent}.markdown-body pre code:after,.markdown-body pre code:before{content:normal}.markdown-body code{font-family:Consolas,Liberation Mono,Menlo,Courier,monospace;padding:.2em 0;margin:0;font-size:85%;background-color:rgba(0,0,0,.04);border-radius:3px}.markdown-body code:after,.markdown-body code:before{letter-spacing:-.2em;content:"\00a0"}.markdown-body a{color:#4078c0;text-decoration:none;background:transparent}.markdown-body img{max-width:100%;max-height:100%}.markdown-body strong{font-weight:700}.markdown-body em{font-style:italic}.markdown-body del{text-decoration:line-through}.hljs{display:block;overflow-x:auto;padding:.5em;color:#333;background:#f8f8f8}.hljs-comment,.hljs-quote{color:#998;font-style:italic}.hljs-keyword,.hljs-selector-tag,.hljs-subst{color:#333;font-weight:700}.hljs-literal,.hljs-number,.hljs-tag .hljs-attr,.hljs-template-variable,.hljs-variable{color:teal}.hljs-doctag,.hljs-string{color:#d14}.hljs-section,.hljs-selector-id,.hljs-title{color:#900;font-weight:700}.hljs-subst{font-weight:400}.hljs-class .hljs-title,.hljs-type{color:#458;font-weight:700}.hljs-attribute,.hljs-name,.hljs-tag{color:navy;font-weight:400}.hljs-link,.hljs-regexp{color:#009926}.hljs-bullet,.hljs-symbol{color:#990073}.hljs-built_in,.hljs-builtin-name{color:#0086b3}.hljs-meta{color:#999;font-weight:700}.hljs-deletion{background:#fdd}.hljs-addition{background:#dfd}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}.CodeMirror{width:100%;height:auto;top:3em;bottom:2.4em;font:inherit;z-index:1;box-sizing:border-box;background:0 0}.CodeMirror-lines{padding:4px 0}.CodeMirror pre{padding:0 4px}.CodeMirror-gutter-filler,.CodeMirror-scrollbar-filler{background-color:#fff}.CodeMirror-gutters{border-right:1px solid #ddd;background-color:#f7f7f7;white-space:nowrap}.CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:#999;white-space:nowrap}.CodeMirror-guttermarker{color:#000}.CodeMirror-guttermarker-subtle{color:#999}.CodeMirror-cursor{border-left:1px solid #000;border-right:none;width:0}.CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.cm-fat-cursor .CodeMirror-cursor{width:auto;border:0!important;background:#7e7}.cm-fat-cursor div.CodeMirror-cursors{z-index:1}.cm-fat-cursor-mark{background-color:rgba(20,255,20,.5)}.cm-animate-fat-cursor,.cm-fat-cursor-mark{-webkit-animation:blink 1.06s steps(1) infinite;animation:blink 1.06s steps(1) infinite}.cm-animate-fat-cursor{width:auto;border:0;background-color:#7e7}@-webkit-keyframes blink{50%{background-color:transparent}}@keyframes blink{50%{background-color:transparent}}.cm-tab{display:inline-block;text-decoration:inherit}.CodeMirror-rulers{position:absolute;left:0;right:0;top:-50px;bottom:-20px;overflow:hidden}.CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}.cm-s-default .cm-header{color:#00f}.cm-s-default .cm-quote{color:#090}.cm-negative{color:#d44}.cm-positive{color:#292}.cm-header,.cm-strong{font-weight:700}.cm-em{font-style:italic}.cm-emoji{background-color:#ffd3d8}.cm-link{text-decoration:underline}.cm-strikethrough{text-decoration:line-through}.cm-s-default .cm-keyword{color:#708}.cm-s-default .cm-atom{color:#219}.cm-s-default .cm-number{color:#164}.cm-s-default .cm-def{color:#00f}.cm-s-default .cm-variable-2{color:#05a}.cm-s-default .cm-type,.cm-s-default .cm-variable-3{color:#085}.cm-s-default .cm-comment{color:#a50}.cm-s-default .cm-string{color:#a11}.cm-s-default .cm-string-2{color:#f50}.cm-s-default .cm-meta,.cm-s-default .cm-qualifier{color:#555}.cm-s-default .cm-builtin{color:#30a}.cm-s-default .cm-bracket{color:#997}.cm-s-default .cm-tag{color:#170}.cm-s-default .cm-attribute{color:#00c}.cm-s-default .cm-hr{color:#999}.cm-s-default .cm-link{color:#00c}.cm-invalidchar,.cm-s-default .cm-error{color:red}.CodeMirror-composing{border-bottom:2px solid}div.CodeMirror span.CodeMirror-matchingbracket{color:#0b0}div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#a22}.CodeMirror-matchingtag{background:rgba(255,150,0,.3)}.CodeMirror-activeline-background{background:#e8f2ff}.CodeMirror{position:absolute;overflow:hidden;background:#fff}.CodeMirror-scroll{overflow:scroll!important;margin-bottom:-30px;margin-right:-30px;padding-bottom:30px;outline:none;position:relative}.CodeMirror-sizer{position:relative;border-right:30px solid transparent}.CodeMirror-gutter-filler,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-vscrollbar{position:absolute;z-index:6;display:none}.CodeMirror-vscrollbar{right:0;top:0;outline:0;overflow-x:hidden;overflow-y:scroll}.CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}.CodeMirror-scrollbar-filler{right:0;bottom:0}.CodeMirror-gutter-filler{left:0;bottom:0}.CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}.CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-30px}.CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:none!important;border:none!important}.CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.CodeMirror-gutter-wrapper ::selection{background-color:transparent}.CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.CodeMirror-lines{cursor:text;min-height:1px}.CodeMirror pre{border-radius:0;border-width:0;background:transparent;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;-webkit-font-variant-ligatures:contextual;font-variant-ligatures:contextual}.CodeMirror-wrap pre{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.CodeMirror-linewidget{position:relative;z-index:2;padding:.1px}.CodeMirror-rtl pre{direction:rtl}.CodeMirror-code{outline:none}.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber,.CodeMirror-scroll,.CodeMirror-sizer{box-sizing:content-box}.CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}.CodeMirror-cursor{position:absolute;pointer-events:none}.CodeMirror-measure pre{position:static}div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}.CodeMirror-focused div.CodeMirror-cursors,div.CodeMirror-dragcursors{visibility:visible}.CodeMirror-selected{background:#cfcfcf;color:#fff}.CodeMirror-focused .CodeMirror-selected{background:#cfcfcf}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#cfcfcf}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#cfcfcf}.cm-searching{background-color:#ffa;background-color:rgba(255,255,0,.4)}.cm-force-border{padding-right:.1px}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.cm-tab-wrap-hack:after{content:""}span.CodeMirror-selectedtext{background:none}.CodeMirror-scroll{margin-bottom:-35px;margin-right:-35px;padding-bottom:35px;height:100%}.CodeMirror-fullscreen{background:#fff;position:fixed!important;top:3.2em;left:0;right:0;bottom:0;height:auto;z-index:9}.CodeMirror-sided{float:left;width:50%!important}.CodeMirror .CodeMirror-code .cm-tag{color:#63a35c}.CodeMirror .CodeMirror-code .cm-attribute{color:#795da3}.CodeMirror .CodeMirror-code .cm-string{color:#183691}.CodeMirror .CodeMirror-code .cm-header-1{font-size:200%;line-height:200%}.CodeMirror .CodeMirror-code .cm-header-2{font-size:160%;line-height:160%}.CodeMirror .CodeMirror-code .cm-header-3{font-size:125%;line-height:125%}.CodeMirror .CodeMirror-code .cm-header-4{font-size:110%;line-height:110%}.CodeMirror .CodeMirror-code .cm-comment{background:#ededed;border-radius:2px}.CodeMirror .CodeMirror-code .cm-math{background-color:#e7f8fa}.CodeMirror .CodeMirror-code .cm-link,.CodeMirror .CodeMirror-code .cm-url{color:#3490dc}.CodeMirror .CodeMirror-code .cm-strikethrough{text-decoration:line-through}.CodeMirror .CodeMirror-placeholder{opacity:.6;font-size:1em;letter-spacing:1px}*{box-sizing:border-box}.smartmd{position:relative;box-sizing:border-box;font-family:inherit}.smartmd,.smartmd__toolbar{background:#fff;overflow:hidden}.smartmd__toolbar{position:absolute;width:100%;top:0;left:0;z-index:5;opacity:1;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding:0 5px;border-bottom:1px solid #ddd;white-space:nowrap;height:3em}.smartmd__toolbar:after,.smartmd__toolbar:before{display:block;content:" ";height:1px}.smartmd__toolbar:before{margin-bottom:.5em}.smartmd__toolbar:after{margin-top:.5em}.smartmd__toolbar--full{width:100%;overflow-x:auto;overflow-y:hidden;white-space:nowrap;box-sizing:border-box;background:#fff;position:fixed;top:0;left:0;opacity:1;z-index:9}.smartmd__toolbar--fixed{position:fixed;top:0;z-index:99;left:0;width:100%;text-align:center}.smartmd__toolbar a{display:inline-block;text-align:center;outline:0;text-decoration:none!important;color:#2c3e50!important;width:2em;height:2em;margin-left:1px;font-size:.95em;border:1px solid transparent;border-radius:3px;cursor:pointer;box-sizing:border-box}.smartmd__toolbar a.active,.smartmd__toolbar a:hover{background:#fcfcfc;border-color:#95a5a6}.smartmd__toolbar a:before{line-height:2em}.smartmd__toolbar a.fa-header-x:after{font-family:Arial,Helvetica Neue,Helvetica,sans-serif;font-size:65%;vertical-align:text-bottom;position:relative;top:2px}.smartmd__toolbar a.fa-header-1:after{content:"1"}.smartmd__toolbar a.fa-header-2:after{content:"2"}.smartmd__toolbar a.fa-header-3:after{content:"3"}.smartmd__toolbar a.fa-header-bigger:after{content:"▲"}.smartmd__toolbar a.fa-header-smaller:after{content:"▼"}.smartmd__toolbar i.split-line{display:inline-block;width:0;border-left:1px solid #d9d9d9;border-right:1px solid #fff;color:transparent;text-indent:-10px;margin:0 6px}.smartmd__toolbar i.split-line:after{content:"|";color:transparent;display:block}.smartmd__toolbar--disabled a:not(.no-disable){pointer-events:none;background:#fff;border-color:transparent;text-shadow:inherit}@media only screen and (max-width:700px){.smartmd__toolbar a.no-mobile{display:none}}.smartmd__preview{top:3em;bottom:2.4em;position:absolute;right:0;width:100%;height:auto;z-index:1;display:none;box-sizing:border-box;background:#fff}.smartmd__preview--active{width:50%;display:block;float:right;border-left:1px solid #ddd}.smartmd__preview--full{position:fixed;bottom:0;background:#fff;width:50%;top:50px;left:50%;right:0;z-index:9}.smartmd__preview--full:after{left:0}.smartmd__preview__scrollbar{position:absolute;right:0;top:0;bottom:0;outline:0;overflow-x:hidden;overflow-y:auto}.smartmd__preview__content{height:100%;margin-bottom:-35px;margin-right:-35px;padding-bottom:35px;overflow:scroll!important;box-sizing:content-box}.smartmd__preview p{margin-top:0}.smartmd__preview pre{background:#eee;margin-bottom:10px}.smartmd__preview table td,.smartmd__preview table th{border:1px solid #ddd;padding:5px}.smartmd__render{position:fixed;display:none;width:100%;height:100%;z-index:10;left:0;top:0;opacity:0;padding:2.75rem;background:rgba(0,0,0,.2);box-sizing:border-box;transition:.15s linear}.smartmd__render__container{max-width:1200px;padding:4.75rem 3.75rem 4rem;width:100%;height:100%;-webkit-transform:translateY(-30%);transform:translateY(-30%);margin:0 auto;overflow:hidden;background:#fff;box-sizing:border-box;border:1px solid rgba(0,0,0,.2);border-radius:10px;position:relative;transition:.2s linear}.smartmd__render__body{height:100%;overflow-y:auto;box-sizing:border-box}.smartmd__render__closeButton{position:fixed;right:0;top:0;padding:1.45rem 2rem;cursor:pointer;opacity:.4;border:0;background:none;border-radius:50%;transition:.15s linear;outline:0}.smartmd__render__closeButton:before{font-size:1.5rem}.smartmd__render--active,.smartmd__render__closeButton:hover{opacity:1}.smartmd__render--active .smartmd__render__container{-webkit-transform:translateY(0);transform:translateY(0)}.smartmd__statusbar{position:absolute;z-index:5;width:100%;left:0;bottom:0;box-sizing:border-box;border-top:1px solid #ddd;padding:0 .8em;color:#959694;text-align:right;clear:both;background:#fff;white-space:nowrap;line-height:2.4em;overflow:hidden}.smartmd__statusbar span{display:inline-block;min-width:4em;margin-left:1em;font-size:.8em}.smartmd__statusbar__lines:before{content:"lines: "}.smartmd__statusbar__words:before{content:"words: "}.smartmd__statusbar__block{float:left;margin-left:0!important;margin-right:1em}.smartmd__alert{position:fixed;width:500px;margin:0 auto;left:0;right:0;top:1rem;z-index:99}.smartmd__alert__item{box-sizing:border-box;border:1px solid transparent;border-radius:.25rem;line-height:1;padding:1.5rem 4rem 1.5rem 1.25rem;opacity:0;transition:.3s ease-out;text-align:justify-all;-webkit-transform:translateY(-100%);transform:translateY(-100%);margin-bottom:1rem}.smartmd__alert__item--fadeIn{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}.smartmd__alert__item--danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.smartmd__alert__item--success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.smartmd__alert__item button{position:absolute;top:0;right:0;cursor:pointer;padding:1.5rem 1.25rem;color:inherit;float:right;font-size:1.35rem;font-weight:700;text-shadow:0 1px 0 #fff;opacity:.5;background:transparent;border:0;outline:0}.smartmd__alert__item i{font-size:16px;margin-right:10px}@media screen and (max-width:500px){.smartmd__alert{width:90%}}.smartmd__upload{width:300px;border-radius:10px;background:#eee;box-sizing:border-box}.smartmd__upload__progress{min-width:12%;background:#1abc9c;color:#fff;line-height:15px;font-size:.6em;padding-right:5px;border-radius:20px;transition:.5s;text-align:right}.smartmd .line-dragenter{box-shadow:-2px 3px 0 2px #6cb3ff}@media screen and (max-width:480px){.smartmd{font-size:14px}} -------------------------------------------------------------------------------- /src/views/head.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{--use cdn or load local--}} 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | {{----}} 12 | {{----}} 13 | {{----}} 14 | {{----}} -------------------------------------------------------------------------------- /src/views/js-parse.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{--use cdn or load local--}} 4 | 5 | 6 | 7 | 8 | 9 | 10 | {{----}} 11 | {{----}} 12 | {{----}} 13 | {{----}} -------------------------------------------------------------------------------- /src/views/js-show.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | {{ config('app.name', 'Fresh Air') }} 8 | 9 | @include('Smartmd::js-parse') 10 | 15 | 16 | 17 |
18 |
19 |
20 |
21 | im 22 |
23 |
24 | 30 |
31 | 32 |
33 |
34 |
35 |
36 |
37 | 43 | -------------------------------------------------------------------------------- /src/views/php-parse.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{--use cdn or load local--}} 4 | 5 | 6 | 7 | 8 | 9 | {{----}} 10 | {{----}} 11 | {{----}} 12 | {{----}} 13 | -------------------------------------------------------------------------------- /src/views/php-show.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | {{ config('app.name', 'Fresh Air') }} 8 | 9 | @include('Smartmd::php-parse') 10 | 15 | 16 | 17 |
18 |
19 |
20 |
21 | im 22 |
23 |
24 |
25 | {!! $content !!} 26 |
27 |
28 |
29 |
30 |
31 | 43 | -------------------------------------------------------------------------------- /src/views/write.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | {{ config('app.name', 'Fresh Air') }} 8 | 9 | @include('Smartmd::head') 10 | 15 | 16 | 17 |
18 |
19 |
20 |
21 | im 22 |
23 |
24 |
25 | 93 |
94 |
95 |
96 |
97 |
98 | 117 | 118 | -------------------------------------------------------------------------------- /tests/MarkdownTest.php: -------------------------------------------------------------------------------- 1 | B```"; 14 | $expectedMarkup = "

header

\n

x = 1

"; 15 | $actualMarkup = $extension->text($math); 16 | $this->assertEquals($expectedMarkup, $actualMarkup); 17 | $expectedMarkup = "
\ngraph LR\nA-->B```
"; 18 | $actualMarkup = $extension->text($flow); 19 | $this->assertEquals($expectedMarkup, $actualMarkup); 20 | } 21 | } 22 | --------------------------------------------------------------------------------