You are here

function _markdown_help_block in Markdown 6

Same name and namespace in other branches
  1. 5 markdown.module \_markdown_help_block()
  2. 7.2 markdown.module \_markdown_help_block()
  3. 7 markdown.module \_markdown_help_block()

Provides content for the markdown help block.

1 call to _markdown_help_block()
markdown_block in ./markdown.module
Implementation of hook_block().

File

./markdown.module, line 74

Code

function _markdown_help_block() {
  return '<pre>' . t("\n## Header 2 ##\n### Header 3 ###\n#### Header 4 ####\n##### Header 5 #####\n(Hashes on right are optional)\n\nLink [Drupal](http://drupal.org)\n\nInline markup like _italics_,\n **bold**, and `code()`.\n\n> Blockquote. Like email replies\n>> And, they can be nested\n\n* Bullet lists are easy too\n- Another one\n+ Another one\n\n1. A numbered list\n2. Which is numbered\n3. With periods and a space\n\nAnd now some code:\n    // Code is indented text\n    is_easy() to_remember();") . '</pre>';
}