Skip to content

Commit b8239eb

Browse files
author
Jen Weber
authored
Merge pull request #20 from ember-learn/use-html-tables
Update to use html tables instead of md tables
2 parents 9fa01d3 + d2b150f commit b8239eb

File tree

1 file changed

+26
-6
lines changed

1 file changed

+26
-6
lines changed

guides/basic-use/cli-commands.md

Lines changed: 26 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,32 @@ For example, `ember --help` will show a list of all available top level commands
99

1010
The help command is also the best way to see the aliased or shorthand versions of common commands and options. For example, here are some of the most frequently used abbreviations:
1111

12-
| full command | alias |
13-
|--------------|-------|
14-
| `ember generate` | `ember g` |
15-
| `ember serve` | `ember s` |
16-
| `ember test` | `ember t` |
17-
| `ember version` | `ember v` |
12+
<table>
13+
<thead>
14+
<tr>
15+
<th>full command</th>
16+
<th>alias</th>
17+
</tr>
18+
</thead>
19+
<tbody>
20+
<tr>
21+
<td><code>ember generate</code></td>
22+
<td><code>ember g</code></td>
23+
</tr>
24+
<tr>
25+
<td><code>ember serve</code></td>
26+
<td><code>ember s</code></td>
27+
</tr>
28+
<tr>
29+
<td><code>ember test</code></td>
30+
<td><code>ember t</code></td>
31+
</tr>
32+
<tr>
33+
<td><code>ember version</code></td>
34+
<td><code>ember v</code></td>
35+
</tr>
36+
</tbody>
37+
</table>
1838

1939
<!-- SCREENSHOT -->
2040

0 commit comments

Comments
 (0)