Skip to content

Commit 5d12088

Browse files
Mastering Markdown Improvements
1 parent 206c68f commit 5d12088

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

octapush.docs/06.Refferences/01.Mastering Markdown/04.File Extensions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# File Extensions
22
There is no requirement for a Markdown file extension, as other answers have explained. But in order for editors or parsers to guarantee that the file they are using is Markdown-formatted, they would look for one of the following extensions:
33

4-
```
4+
```text
55
.markdown
66
.mdown
77
.mkdn

octapush.docs/06.Refferences/01.Mastering Markdown/06.Anchors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
To create an anchor to a heading in github flavored markdown. Add - characters between each word in the heading and wrap the value in parens `(#some-markdown-heading)` so your link should look like so:
44

5-
```
5+
```text
66
[create an anchor](#anchors-in-markdown)
77
```

octapush.docs/06.Refferences/01.Mastering Markdown/12.Links.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ In both styles, the link text is delimited by [square brackets].
66

77
To create an inline link, use a set of regular parentheses immediately after the link text’s closing square bracket. Inside the parentheses, put the URL where you want the link to point, along with an optional title for the link, surrounded in quotes. For example:
88

9-
```
9+
```text
1010
[I'm an inline-style link](https://www.google.com)
1111
1212
[I'm an inline-style link with title](https://www.google.com "Google's Homepage")

octapush.docs/06.Refferences/01.Mastering Markdown/16.Titles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This is an H1
1212
1313
This is an H2
1414
-------------
15-
`
15+
```
1616

1717
Any number of underlining =’s or -’s will work.
1818

0 commit comments

Comments
 (0)