You are here

function markdown_drush_help in Markdown 8

Same name and namespace in other branches
  1. 8.2 markdown.drush.inc \markdown_drush_help()
  2. 7.2 drush/markdown.drush.inc \markdown_drush_help()

Implementation of hook_drush_help().

This function is called whenever a drush user calls 'drush help <name-of-your-command>'

Parameters

A string with the help section (prepend with 'drush:'):

Return value

A string with the help text for your command.

File

drush/markdown.drush.inc, line 58
drush integration for markdown filter.

Code

function markdown_drush_help($section) {
  switch ($section) {
    case 'drush:markdown-plugin':
      return dt('Download and install a selection of Markdown plugins, default location is the libraries directory.');
  }
}