You are here

function identify_modifier_markdown in Markdown 6

Same name and namespace in other branches
  1. 5 markdown.php \identify_modifier_markdown()

File

./markdown.php, line 173

Code

function identify_modifier_markdown() {
  return array(
    'name' => 'markdown',
    'type' => 'modifier',
    'nicename' => 'PHP Markdown Extra',
    'description' => 'A text-to-HTML conversion tool for web writers',
    'authors' => 'Michel Fortin and John Gruber',
    'licence' => 'GPL',
    'version' => MARKDOWNEXTRA_VERSION,
    'help' => '<a href="http://daringfireball.net/projects/markdown/syntax">Markdown syntax</a> allows you to write using an easy-to-read, easy-to-write plain text format. Based on the original Perl version by <a href="http://daringfireball.net/">John Gruber</a>. <a href="http://michelf.ca/projects/php-markdown/">More...</a>',
  );
}