Skip to content

Commit 9d78b4f

Browse files
committed
Small MD updates
1 parent 0489ae4 commit 9d78b4f

File tree

1 file changed

+31
-4
lines changed

1 file changed

+31
-4
lines changed

Markdown/Markdown Coding Reference.md

Lines changed: 31 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ Certification(s) w/ an external link:
1111
Cercification(s) w/o an external link:
1212
![License](https://camo.githubusercontent.com/890acbdcb87868b382af9a4b1fac507b9659d9bf/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)
1313

14+
<hr>
15+
1416
# This is the largest title heading (h1).
1517
## This is a smaller title heading (h2).
1618
### This is a smaller-er title heading (h3).
@@ -26,10 +28,14 @@ This is what normal text looks like.
2628

2729
> This is how to make a block comment or prospective user question.
2830
31+
<hr>
32+
2933
This is how to make a [link](http://www.ascii-middle-finger.com/) to a specific web page.
3034

3135
- [ ] This is how to make a checkbox.
3236

37+
<hr>
38+
3339
Make numbered lists like this (must have an empty line in between description and list):
3440

3541
1. I am a list item.
@@ -46,6 +52,8 @@ Make numbered lists like this (must have an empty line in between description an
4652
12. I am a list item.
4753
13. I am a list item.
4854

55+
<hr>
56+
4957
Make un-numbered (bulleted) lists like this (must have an empty line in between):
5058

5159
* I am a list item.
@@ -58,6 +66,8 @@ Make un-numbered (bulleted) lists like this (must have an empty line in between)
5866
- I am a sub-list item.
5967
- I am a sub-list item.
6068

69+
<hr>
70+
6171
This is how to make a table:
6272

6373
| Tables | Are | Cool |
@@ -66,8 +76,24 @@ This is how to make a table:
6676
| col 2 is | centered | $12 |
6777
| col 3 is | right-aligned | $1 |
6878

69-
This is how to display in-line code:
70-
`for (i = 0, i < 10, i++)`
79+
<hr>
80+
81+
This is how to display in-line code: `for (i = 0, i < 10, i++)`
82+
83+
<hr>
84+
85+
This is how to create collapsible sections:
86+
<details>
87+
<summary>Click to expand!</summary>
88+
89+
### Example Heading
90+
91+
> Example Comment
92+
93+
<p>Example Paragraph Text</p>
94+
</details>
95+
96+
<hr>
7197

7298
This is how to display blocks of code with a specific style types
7399
(Ruby, Bash, CSS, HTML, JS, etc...):
@@ -127,6 +153,7 @@ architecture arch_name of entity_name is
127153
end architecture arch_name;
128154
```
129155

156+
<hr>
130157

131158
Here's a full list of supported languages:
132159

@@ -257,12 +284,12 @@ Here's a full list of supported languages:
257284
* xslt (`*.xsl`, `*.xslt`)
258285
* yaml (`*.yaml`, `*.yml`)
259286

260-
<br>
287+
<hr>
261288

262289
Use two spaces `" "` at the end of a line or the HTML line break element `<br>` to initialize a line break.
263290
> Typically it's better to use `<br>` since it's actually visable and some text editors/interpreters rid trailing white space.
264291
265-
<br>
292+
<hr>
266293

267294
### Indent with Markdown
268295

0 commit comments

Comments
 (0)