You are here

function markdown_help in Markdown 7.2

Same name and namespace in other branches
  1. 8.2 markdown.module \markdown_help()
  2. 8 markdown.module \markdown_help()
  3. 5 markdown.module \markdown_help()
  4. 6 markdown.module \markdown_help()
  5. 7 markdown.module \markdown_help()
  6. 3.0.x markdown.module \markdown_help()

Implements hook_help().

1 string reference to 'markdown_help'
markdown_block_view in ./markdown.module
Implements hook_block_view().

File

./markdown.module, line 11
Provides a Markdown input filter.

Code

function markdown_help($path, $arg) {
  switch ($path) {
    case 'admin/help#markdown':
      return t('<p>The Markdown filter allows you to enter content using <a href="http://daringfireball.net/projects/markdown">Markdown</a>, a simple plain-text syntax that is transformed into valid XHTML.</p>');
  }
}