Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drush / drush / commands / core / outputformat / html.tpl.php
diff --git a/vendor/drush/drush/commands/core/outputformat/html.tpl.php b/vendor/drush/drush/commands/core/outputformat/html.tpl.php
deleted file mode 100644 (file)
index 44a4efc..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<html>
-<head><title>Drush help</title><style>dt {font-size: 110%; font-weight: bold}</style></head>
-<body>
-  <h3>Global Options (see `drush topic core-global-options` for the full list)</h3>
-  <table><?php
-    foreach ($global_options_rows as $key => $row) {
-      print '<tr>';
-      foreach ($row as $value) {
-        print  "<td>" . htmlspecialchars($value) . "</td>\n";
-      }
-      print "</tr>\n";
-    } ?>
-  </table>
-  <h3>Command list</h3>
-  <table><?php
-    foreach ($input as $key => $command) {
-      print "  <tr><td><a href=\"#$key\">$key</a></td><td>" . $command['description'] . "</td></tr>\n";
-    } ?>
-  </table>
-<h3>Command detail</h3>
-<dl><?php
-      foreach ($input as $key => $command) {
-        print "\n<a name=\"$key\"></a><dt>$key</dt><dd><pre>\n";
-        drush_core_helpsingle($key);
-        print "</pre></dd>\n";
-      }
-    ?>
-</body>
-</html>