Run prettier on all *.md files

```
prettier '{app,source}/**/**.md' --write
```
This commit is contained in:
Oliver Davies 2020-03-08 17:52:59 +00:00
parent a3ceeaf0f3
commit 85a10c545b
170 changed files with 5127 additions and 2282 deletions

View file

@ -7,19 +7,32 @@ tags:
- drupal-planet
- drush
---
If you use [Drush](https://raw.github.com/drush-ops/drush/master/README.md "About Drush"), it's likely that you've used the `drush pm-download` (or `drush dl` for short) command to start a new project. This command downloads projects from Drupal.org, but if you don't specify a project or type "drush dl drupal", the command will download the current stable version of Drupal core. Currently, this will be Drupal 7 with that being the current stable version of core at the time of writing this post.
If you use
[Drush](https://raw.github.com/drush-ops/drush/master/README.md 'About Drush'),
it's likely that you've used the `drush pm-download` (or `drush dl` for short)
command to start a new project. This command downloads projects from Drupal.org,
but if you don't specify a project or type "drush dl drupal", the command will
download the current stable version of Drupal core. Currently, this will be
Drupal 7 with that being the current stable version of core at the time of
writing this post.
But what if you don't want Drupal 7?
I still maintain a number of Drupal 6 sites and occassionally need to download Drupal 6 core as opposed to Drupal 7. I'm also experimenting with Drupal 8 so I need to download that as well.
I still maintain a number of Drupal 6 sites and occassionally need to download
Drupal 6 core as opposed to Drupal 7. I'm also experimenting with Drupal 8 so I
need to download that as well.
By declarding the core version of Drupal, such as "drupal-6", Drush will download that instead.
By declarding the core version of Drupal, such as "drupal-6", Drush will
download that instead.
```language-bash
$ drush dl drupal-6
```
This downloads the most recent stable version of Drupal 6. If you don't want that, you can add the --select and additionally the --all options to be presented with an entire list to chose from.
This downloads the most recent stable version of Drupal 6. If you don't want
that, you can add the --select and additionally the --all options to be
presented with an entire list to chose from.
```language-bash
$ drush dl drupal-6 --select
@ -41,4 +54,6 @@ $ drush dl drupal-5
$ drush dl drupal-8
```
For a full list of the available options, type "drush help pm-download" into a Terminal window or take a look at the entry on [drush.ws](http://drush.ws/#pm-download, "The entry for pm-download on drush.ws").
For a full list of the available options, type "drush help pm-download" into a
Terminal window or take a look at the entry on
[drush.ws](http://drush.ws/#pm-download, 'The entry for pm-download on drush.ws').