Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 470 Bytes

File metadata and controls

26 lines (19 loc) · 470 Bytes

Docs Conventions

Markdown bash code blocks

Each bash code block must contain exactly one command. Never combine multiple commands in a single block. On the roots.io front-end, bash code blocks have a clipboard copy button that only supports single lines.

Good:

```bash
composer require example/package
```

```bash
wp plugin activate example
```

Bad:

```bash
composer require example/package
wp plugin activate example
```