You are here

function markdown_help in Markdown 8

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

Implements hook_help().

File

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

Code

function markdown_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.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 HTML.</p>');
  }
}