Security update for Core, with self-updated composer
[yaffs-website] / vendor / drupal / console / templates / gitbook / command.md.twig
diff --git a/vendor/drupal/console/templates/gitbook/command.md.twig b/vendor/drupal/console/templates/gitbook/command.md.twig
deleted file mode 100644 (file)
index df02d09..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-# {{ name }}
-{{ description }}
-
-**{{ messages.usage }}:**
-```
-$ drupal {{ name }}{% if arguments|length>0 %} [arguments]{% endif %}{% if options|length>0 %} [options]{% endif %}
-
-{% for alias in aliases %}
-$ {{ alias }}  
-{% endfor %}
-```
-{% if options|length>0 %}
-
-## {{ messages.options }}
-{{ messages.option  }} | {{ messages.details }}
--------|-------------
-{% for option in options %}
---{{ option.name }} | {{ option.description }}
-{% endfor %}
-{% endif %}
-{% if arguments|length>0 %}
-
-## {{ messages.arguments }}
-{{ messages.argument }} | {{ messages.details }}
----------|-------------
-{% for argument in arguments %}
-{{ argument.name }} | {{ argument.description }}
-{% endfor %}
-{% endif %}
-{% if examples|length>0 %}
-
-## {{ messages.examples }}
-{% for example in examples %}
-* {{ example.description }}
-```
-$ {{ example.execution }}
-```
-{% endfor %}
-{% endif %}