Skip to content

Commit df00fee

Browse files
author
protohedgehog
committed
Updates to md syntax section
1 parent 2d85654 commit df00fee

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

content_development/Task_1.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,14 @@ Here is some basic markdown syntax that you might find handy for now (based larg
5959
Or different underline style
6060
----------------------------`
6161

62-
`*one asterisk pair for italics*
62+
*one asterisk pair for italics*
63+
6364
**two asterisk pairs for bold**
65+
6466
_you can also use underscores for bold_
67+
6568
*_to do things like this_*
69+
6670
~~two tildes for strikethrough~~
6771

6872
1. For a numbered list
@@ -71,25 +75,25 @@ Here is some basic markdown syntax that you might find handy for now (based larg
7175

7276

7377
* For an unordered list
74-
* Just use asterisks
78+
* Just use asterisks (*)
7579
* Like this
7680

7781
1. Unordered
7882
2. And ordered
7983
* Lists can also be
8084
* Combined
81-
3. Like this`
85+
3. Like this
8286

83-
For automatic links use `[square brackets](https://www.google.com)` and then insert the target URL in normal brackets after.
87+
For automatic links use [square brackets](https://www.google.com) and then insert the target URL in normal brackets after
8488

8589
For images, use an exclamation to indicate this and then a link to the image location:
86-
`![image](https://github.com/OpenScienceMOOC/Module-1-Open-Principles/blob/master/content_development/images/logo.png)`
90+
![image](https://github.com/OpenScienceMOOC/Module-1-Open-Principles/blob/master/content_development/images/logo.png)
8791

8892
Some times you can also add in bits of HTML here if you want to be a bit fancier, which can help with display issues too some times:
8993

90-
`<p align="center"><img src="https://github.com/OpenScienceMOOC/Module-1-Open-Principles/blob/master/content_development/images/logo.png?raw=true" width="600" /></p>
94+
<p align="center"><img src="https://github.com/OpenScienceMOOC/Module-1-Open-Principles/blob/master/content_development/images/Logo.png?raw=true" width="500" /></p>
9195

92-
<p align="center"><i>The Open Science MOOC logo!</i></p>`
96+
<p align="center"><i>The Open Science MOOC logo!</i></p>
9397

9498
Some times, you might want to add in little snippets of code, like we have done above. For this, use simple back ticks:
9599

0 commit comments

Comments
 (0)