Skip to content

Commit

Permalink
Merge pull request #1077 from erinmgraham/pr1018-markdown
Browse files Browse the repository at this point in the history
Pr1018 markdown
  • Loading branch information
martinosorb authored Mar 10, 2025
2 parents 988c8e9 + 2cada86 commit 67393b5
Showing 1 changed file with 51 additions and 1 deletion.
52 changes: 51 additions & 1 deletion episodes/04-changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,57 @@ Type the text below into the `guacamole.md` file:
## Instructions
```

Save the file and exit your editor. Next, let’s verify that the file was properly created by running the list command (`ls`):
Save the file and exit your editor.

::::::::::::::::::::::::::::::::::::::::: spoiler

## Markdown

Jimmy and Alfredo are using [Markdown](https://en.wikipedia.org/wiki/Markdown)
to write their recipes. It is a simple plain-text format for writing lists,
links and other things that might go into a web page.

+---------------------------------------+------------------------------------------------+
| Markdown code | Rendered output |
+=======================================+================================================+
+---------------------------------------+------------------------------------------------+
| ``` | <p></p> |
| * Use asterisks | - Use asterisks |
| * to create | - to create |
| * bullet lists. | - bullet lists. |
| ``` | |
+---------------------------------------+------------------------------------------------+
+---------------------------------------+------------------------------------------------+
| ``` | <p></p> |
| 1. Use numbers | 1. Use numbers |
| 1. to create | 2. to create |
| 1. bullet lists. | 3. numbered lists. |
| ``` | |
+---------------------------------------+------------------------------------------------+
+---------------------------------------+------------------------------------------------+
| ``` | <p></p> |
| * You can use indents | - You can use indents |
| * To create sublists | - To create sublists |
| * of the same type | - of the same type |
| * Or sublists | - Or sublists |
| 1. Of different | 1. Of different |
| 1. types | 2. types |
| ``` | |
+---------------------------------------+------------------------------------------------+
+---------------------------------------+------------------------------------------------+
| ``` | <p></p> |
| # A Level-1 Heading | ## A Level-1 Heading |
| ``` | |
+---------------------------------------+------------------------------------------------+
+---------------------------------------+------------------------------------------------+
| ``` | <p></p> |
| ## A Level-2 Heading (etc.) | ### A Level-2 Heading (etc.) |
| ``` | |
+---------------------------------------+------------------------------------------------+

::::::::::::::::::::::::::::::::::::::::::::::::::

Let’s verify that the file was properly created by running the list command (`ls`):

```bash
$ ls
Expand Down

0 comments on commit 67393b5

Please sign in to comment.