Use "markdown" for syntax highlighting on GitHub ("md" not recognized).

This commit is contained in:
David Anson 2018-03-03 22:22:02 -08:00
parent 08c8031736
commit 942cc9af08
4 changed files with 6 additions and 6 deletions

View file

@ -136,7 +136,7 @@ comments don't appear in the final markup):
For example: For example:
```md ```markdown
<!-- markdownlint-disable MD037 --> <!-- markdownlint-disable MD037 -->
deliberate space * in * emphasis deliberate space * in * emphasis
<!-- markdownlint-enable MD037 --> <!-- markdownlint-enable MD037 -->
@ -145,7 +145,7 @@ deliberate space * in * emphasis
Changes take effect starting with the line a comment is on, so the following Changes take effect starting with the line a comment is on, so the following
has no effect: has no effect:
```md ```markdown
space * in * emphasis <!-- markdownlint-disable --> <!-- markdownlint-enable --> space * in * emphasis <!-- markdownlint-disable --> <!-- markdownlint-enable -->
``` ```

View file

@ -63,7 +63,7 @@ A rule is implemented as an `Object` with four required properties:
Linting the Markdown document: Linting the Markdown document:
```md ```markdown
# Title # Title
Text *text* text. Text *text* text.

View file

@ -1258,13 +1258,13 @@ people who may not be able to see it.
Alternate text is commonly specified inline as: Alternate text is commonly specified inline as:
```md ```markdown
![Alternate text](image.jpg) ![Alternate text](image.jpg)
``` ```
Or with reference syntax as: Or with reference syntax as:
```md ```markdown
![Alternate text][ref] ![Alternate text][ref]
... ...

View file

@ -8,7 +8,7 @@ This line however, while very long, doesn't have whitespace after the 80th colum
[This long line is comprised entirely of a link](http://example.com "But is inside a code block") {MD013} [This long line is comprised entirely of a link](http://example.com "But is inside a code block") {MD013}
```md ```markdown
[This long line is comprised entirely of a link](http://example.com "But is inside a code block") {MD013} [This long line is comprised entirely of a link](http://example.com "But is inside a code block") {MD013}
``` ```