You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/elements.md
+27-5Lines changed: 27 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,9 @@ This is for testing all the different kinds of markdown that can exist. Whenever
9
9
10
10
## Headings
11
11
12
-
For headings, do we ever go deeper than a heading 4? Do we really need styles for that?
12
+
Headings at sizes 4, 5, and 6 are all treated equally. If we start writing prose that needs those headings, we should re-evaluate our lives.
13
+
14
+
# Heading 1
13
15
14
16
## Heading 2
15
17
@@ -21,6 +23,14 @@ For headings, do we ever go deeper than a heading 4? Do we really need styles fo
21
23
22
24
###### Heading 6
23
25
26
+
## Tables
27
+
28
+
| Syntax | Description |
29
+
| ----------- | ----------- |
30
+
| Row 1 | Column 2 |
31
+
| Row 2 | Column 2 |
32
+
| Row 3 | Column 2 |
33
+
24
34
## Callouts
25
35
26
36
Callouts can be used with the `<docs-*>` elements. They are specifically for calling special attention to pieces of information outside the normal flow of the document.
@@ -47,11 +57,9 @@ Note: maybe the semantics for these aren't quite right. There might be other nou
47
57
-`<docs-warning>` could become `<docs-important>`
48
58
-`<docs-error>` could become `<docs-warning>` or `<docs-danger>`
49
59
50
-
## Normal Prose
60
+
## Blockquotes
51
61
52
-
@TODO Blockquotes, lists, etc.
53
-
54
-
This is a `<blockquote>` with multiple lines in it:
62
+
This is a `<blockquote>` with multiple lines and styles in it:
55
63
56
64
> This is my quote.
57
65
>
@@ -67,6 +75,8 @@ This is a `<blockquote>` with multiple lines in it:
67
75
> 2. Another list item
68
76
> 3. Yet another list item
69
77
78
+
## Lists
79
+
70
80
This is a list of links, some of which are code:
71
81
72
82
- This is my first list item
@@ -75,6 +85,18 @@ This is a list of links, some of which are code:
75
85
76
86
And don't forget about proper styling for `<a>` tags that don’t have an `href`: <a>like this link right here</a>.
77
87
88
+
And then there’s the `<dl>` lists:
89
+
90
+
<dl>
91
+
<dt>React</dt>
92
+
<dd>Respond or behave in a particular way in response to something</dd>
93
+
<dt>Router</dt>
94
+
<dd>A device that forwards data packets to the appropriate parts of a computer network.</dd>
95
+
<dt>Library</dt>
96
+
<dd>A building or room containing collections of books, periodicals, and sometimes films and recorded music for people to read, borrow, or refer to.</dd>
97
+
<dd>A collection of programs and software packages made generally available, often loaded and stored on disk for immediate use.</dd>
0 commit comments