diff --git a/content_report.module b/content_report.module
index 1bf96c8..961f097 100644
--- a/content_report.module
+++ b/content_report.module
@@ -8,19 +8,19 @@
  * Implements hook_help().
  */
 function content_report_help($path, $arg) {
-  $out = array();
-
   switch ($path) {
     case 'admin/reports/content-report':
+      $output = '';
       $library = libraries_detect('jquery.tablesorter');
-
       if (!$library || !$library['installed']) {
-        $out[] = t("Install the tablesorter library to enable real-time data sorting. <pre>drush ldl jquery.tablesorter</pre>");
+        $output = t("Install the tablesorter library to enable real-time data sorting.");
+        $output .= "<ol>";
+        $output .= "<li>" . t("If you have Drush installed, use <code>drush ldl @tablesorter</code></li>", array('@tablesorter' => 'jquery.tablesorter'));
+        $output .= "<li>" . t("If you don't have Drush installed, you can download library from git repo: <a href='@libgitrepo'>@libgitrepo</a>", array('@libgitrepo' => 'https://github.com/christianbach/tablesorter')) . "</li>";
+        $output .= "</ol>";
       }
-      break;
+    return $output;
   }
-
-  return implode('<br />', $out);
 }
 
 /**
