Markdown Tutorial
1. Edit a Markdown file from the Recipes project
-
In Github Desktop, make sure you have the latest changes from the Recipes project on your computer by changing to the “master” branch and then pressing “Fetch origin” and (if shown) “Pull origin”.
-
Follow the steps in the Git Tutorial section 2 to create a new branch in Github and open one of the files in the
_posts
directory of the Recipes project using Visual Studio Code. -
In Visual Studio Code, make a word or phrase bold by putting
**
on each side of it. Because Visual Studio Code supports Markdown, you will see the word change to bold when you edit it. - You can check what your Markdown will look like by clicking the “Preview” button to the right of your tab in Visual Studio Code.
-
Put a word or phrase in italics by putting
_
on each side of it. (You can do the same thing by using*
instead of_
.) In Visual Studio Code, you can also use some keyboard shortcuts likeCtrl+B
for bold andCtrl+I
for italics, the same way you would in Microsoft Word. (On Mac:⌘+B
and⌘+I
) -
Try creating or changing a numbered list by typing a
1.
at the beginning of a line, followed by a space and some text. Then press theReturn
/Enter
key to create a new line. The next number will automatically be added. For example,1. 200g Flour 2. ...
- To add a link, put the text of the link between square brackets
[]
, followed by the web address in parentheses()
, like this:[text of the link](https://example.com)
There shouldn’t be any space between the
]
and the(
. - Adding images is similar. Try copying this into your document:

2. Sync your Markdown file to the Recipes project
- Save your changes to the file by pressing
Ctrl+S
(Mac⌘+S
) or using the File > Save menu in Visual Studio Code. -
In Github Desktop, commit your changes and publish your branch (see Git Tutorial 2.4).
- Go to https://gitlab.gwdg.de/24recipes/24recipes.pages.gwdg.de and log in. Let me know if this is your first time logging into Gitlab, so that I can give you permission to do the merge request.
-
Create a Merge Request to get the changes from your branch into the “master” branch. (See Git Tutorial section 4). I will have to manually approve this merge request.
3. Try some HTML in your Markdown
With Markdown you can do basic text formatting, but with HTML you can do much more. Markdown is normally converted into HTML web pages (or other formats), but you can actually put sections of HTML into your Markdown file when you want to do something fancy.
-
Open one of the Markdown files from the Recipes project (as in Step 1), but this time make a word or short phrase (not more than 1 line) red. You can copy and paste this before the text you want to turn red:
<span style="color:red">
and this after the text:</span>
. - Note the structure of what you inserted. HTML needs a “start tag” – this is the
<span ...>
and an end tag, the</span>
. In the start tag you can also have “attributes” – here, thestyle="color:red"
separated by a space from the name of the tag or from other attributes. The whole thing – everything between the start and end tags – is called an “element”. - Suppose you want to make the dancing cat image huge. Try this:
<img src="http://i355.photobucket.com/albums/r460/Maddy11_02/cat-dance.gif" width="500px"/>
You might notice that the
<img>
element has no end tag, but it does have a weird/
before the final>
. In HTML (and XML), there’s sometimes no need for text in between tags (as in the case of an image). In these cases a/>
at the end of your tag signals that the element is complete. A start tag and end tag all in one! - Save and commit your changes, and sync them to the Recipes project the same way you did in Step 2 above.
4. View the full HTML page
We’ve put some HTML inside Markdown, but you haven’t yet seen what your whole page looks like on the Recipes website. Once I’ve merged in your changes (step 2 above), you’ll see your page appear at https://24recipes.pages.gwdg.de/.
- Click on the page you edited. Notice what it looks like (bold and italic text, numbered list, image).
- Now right-click anywhere on a blank part of the page and then click “View Page Source”. (The wording might be a bit different depending on your browser.) This is what the page you edited looks like in HTML code. The first part (under
<head>
) was created automatically, but if you scroll to the bottom, you’ll see the content you edited.