Skip to content

Commit 67393b5

Browse files
authored
Merge pull request #1077 from erinmgraham/pr1018-markdown
Pr1018 markdown
2 parents 988c8e9 + 2cada86 commit 67393b5

File tree

1 file changed

+51
-1
lines changed

1 file changed

+51
-1
lines changed

episodes/04-changes.md

Lines changed: 51 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,57 @@ Type the text below into the `guacamole.md` file:
4444
## Instructions
4545
```
4646

47-
Save the file and exit your editor. Next, let’s verify that the file was properly created by running the list command (`ls`):
47+
Save the file and exit your editor.
48+
49+
::::::::::::::::::::::::::::::::::::::::: spoiler
50+
51+
## Markdown
52+
53+
Jimmy and Alfredo are using [Markdown](https://en.wikipedia.org/wiki/Markdown)
54+
to write their recipes. It is a simple plain-text format for writing lists,
55+
links and other things that might go into a web page.
56+
57+
+---------------------------------------+------------------------------------------------+
58+
| Markdown code | Rendered output |
59+
+=======================================+================================================+
60+
+---------------------------------------+------------------------------------------------+
61+
| ``` | <p></p> |
62+
| * Use asterisks | - Use asterisks |
63+
| * to create | - to create |
64+
| * bullet lists. | - bullet lists. |
65+
| ``` | |
66+
+---------------------------------------+------------------------------------------------+
67+
+---------------------------------------+------------------------------------------------+
68+
| ``` | <p></p> |
69+
| 1. Use numbers | 1. Use numbers |
70+
| 1. to create | 2. to create |
71+
| 1. bullet lists. | 3. numbered lists. |
72+
| ``` | |
73+
+---------------------------------------+------------------------------------------------+
74+
+---------------------------------------+------------------------------------------------+
75+
| ``` | <p></p> |
76+
| * You can use indents | - You can use indents |
77+
| * To create sublists | - To create sublists |
78+
| * of the same type | - of the same type |
79+
| * Or sublists | - Or sublists |
80+
| 1. Of different | 1. Of different |
81+
| 1. types | 2. types |
82+
| ``` | |
83+
+---------------------------------------+------------------------------------------------+
84+
+---------------------------------------+------------------------------------------------+
85+
| ``` | <p></p> |
86+
| # A Level-1 Heading | ## A Level-1 Heading |
87+
| ``` | |
88+
+---------------------------------------+------------------------------------------------+
89+
+---------------------------------------+------------------------------------------------+
90+
| ``` | <p></p> |
91+
| ## A Level-2 Heading (etc.) | ### A Level-2 Heading (etc.) |
92+
| ``` | |
93+
+---------------------------------------+------------------------------------------------+
94+
95+
::::::::::::::::::::::::::::::::::::::::::::::::::
96+
97+
Let’s verify that the file was properly created by running the list command (`ls`):
4898

4999
```bash
50100
$ ls

0 commit comments

Comments
 (0)