mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 14:00:13 +01:00
43 lines
867 B
Markdown
43 lines
867 B
Markdown
|
|
# Token Map Spans
|
||
|
|
|
||
|
|
Text *emphasis* text __strong__ text `code` text [link](https://example.com).
|
||
|
|
|
||
|
|
Paragraph with *emphasis
|
||
|
|
spanning lines* and __strong
|
||
|
|
spanning lines__ and `code
|
||
|
|
spanning lines` and [link
|
||
|
|
spanning lines](https://example.com).
|
||
|
|
|
||
|
|
> Blockquote
|
||
|
|
> [link](https://example.com)
|
||
|
|
> > Nested
|
||
|
|
> > blockquote
|
||
|
|
> > [link](https://example.com)
|
||
|
|
|
||
|
|
Heading
|
||
|
|
-------
|
||
|
|
|
||
|
|
```lang
|
||
|
|
Fenced
|
||
|
|
code
|
||
|
|
```
|
||
|
|
|
||
|
|
Indented
|
||
|
|
code
|
||
|
|
|
||
|
|
1. List
|
||
|
|
2. List
|
||
|
|
- Sub-list
|
||
|
|
- Sub-list
|
||
|
|
3. List
|
||
|
|
|
||
|
|
| Table | Column 1 | Column 2 | Column 3 | Column 4 |
|
||
|
|
|-------|------------|------------|----------|----------------------------|
|
||
|
|
| Text | *emphasis* | __strong__ | `code` | [link](https://example.com) |
|
||
|
|
| Text | *emphasis* | __strong__ | `code` | [link](https://example.com) |
|
||
|
|
|
||
|
|
<!-- markdownlint-configure-file {
|
||
|
|
"code-block-style": false,
|
||
|
|
"heading-style": false
|
||
|
|
} -->
|