-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5fe9671
commit 66affec
Showing
14 changed files
with
197 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
* Inconsistent indentation for list items at the same level | ||
* list-indent: true | ||
* list-indent: true | ||
* extra space |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[No empty links]() | ||
|
||
[no-empty-links: true](#) | ||
[No empty links](#) | ||
|
||
[No empty links](#example) | ||
|
||
[no-empty-links: true](https://example.com) | ||
[no empty links](https://example.com) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Code fence style | ||
|
||
```js | ||
const message = 'This is fine.'; | ||
console.log(message); | ||
``` | ||
|
||
~~~js | ||
const = 'What is wrong with you?'; | ||
console.log(message); | ||
~~~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Emphasis style | ||
|
||
This is *good*. | ||
|
||
This is _bad_. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Strong style | ||
|
||
This is **good**. | ||
|
||
This is __bad__. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# MD051 | ||
|
||
[Link exists](#md051) | ||
|
||
[Link does not exist](#fragment) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Full: [text][label] | ||
Collapsed: [label][] | ||
Shortcut: [label] | ||
|
||
Full: ![text][image] | ||
Collapsed: ![image][] | ||
Shortcut: ![image] | ||
|
||
[label]: https://example.com/label | ||
[image]: https://example.com/image | ||
|
||
* * * | ||
|
||
Full: [Words][content] | ||
Collapsed: [content][] | ||
Shortcut: [content] | ||
|
||
Full: ![Words][picture] | ||
Collapsed: ![picture][] | ||
Shortcut: ![picture] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Full: [text][label] | ||
Collapsed: [label][] | ||
Shortcut: [label] | ||
|
||
Full: ![text][image] | ||
Collapsed: ![image][] | ||
Shortcut: ![image] | ||
|
||
[label]: https://example.com/label | ||
[image]: https://example.com/image | ||
|
||
[content]: https://exampl.com/content | ||
[picture]: https://exampl.com/picture |
Oops, something went wrong.