| @@ -1,8 +1,8 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | 3 | * Module Name: Markdown |
| 4 | - * Module Description: Write posts or pages in plain-text Markdown syntax | |
| 4 | + * Module Description: Write and format posts using clean, readable Markdown syntax. | |
| 5 | 5 | * Sort Order: 31 |
| 6 | 6 | * First Introduced: 2.8 |
| 7 | 7 | * Requires Connection: No |
| 8 | 8 | * Auto Activate: No |
| @@ -11,8 +11,12 @@ | ||
| 11 | 11 | * Additional Search Queries: md, markdown |
| 12 | 12 | * |
| 13 | 13 | * @package automattic/jetpack |
| 14 | 14 | */ |
| 15 | + | |
| 16 | +if ( ! defined( 'ABSPATH' ) ) { | |
| 17 | + exit( 0 ); | |
| 18 | +} | |
| 15 | 19 | |
| 16 | 20 | // Require the markdown class file. |
| 17 | 21 | require __DIR__ . '/markdown/easy-markdown.php'; |
| 18 | 22 | |