Yue

Post 4 Markdown Test

Jane Doe
Table of Contents

GitHub Flavored Markdown Test #

Headers #

H1 #

H2 #

H3 #

H4 #

H5 #
H6 #

Emoji #

:see_no_evil: 🙈

Text #

Normal text #

I can eat glass, it does not hurt me.I can eat glass, it does not hurt me.I can eat glass, it does not hurt me.I can eat glass, it does not hurt me.I can eat glass, it does not hurt me.I can eat glass, it does not hurt me.I can eat glass, it does not hurt me.I can eat glass, it does not hurt me.I can eat glass, it does not hurt me.I can eat glass, it does not hurt me.

The quick brown fox jumps over the lazy dog.The quick brown fox jumps over the lazy dog.The quick brown fox jumps over the lazy dog.The quick brown fox jumps over the lazy dog.The quick brown fox jumps over the lazy dog.The quick brown fox jumps over the lazy dog.The quick brown fox jumps over the lazy dog.The quick brown fox jumps over the lazy dog.The quick brown fox jumps over the lazy dog.The quick brown fox jumps over the lazy dog.

Long word #

word aVeryLongWordaVeryLongWordaVeryLongWordaVeryLongWordaVeryLongWordaVeryLongWordaVeryLongWordaVeryLongWordaVeryLongWordaVeryLongWordaVeryLongWordaVeryLongWordaVeryLongWordaVeryLongWordaVeryLongWordaVeryLongWordaVeryLongWordaVeryLongWord word

A long URL: https://example.org/aVeryLongURLaVeryLongURLaVeryLongURLaVeryLongURLaVeryLongURLaVeryLongURLaVeryLongURLaVeryLongURLaVeryLongURLaVeryLongURL.

A link with a long word: aLinkWithALongWordaLinkWithALongWordaLinkWithALongWordaLinkWithALongWordaLinkWithALongWordaLinkWithALongWordaLinkWithALongWordaLinkWithALongWordaLinkWithALongWordaLinkWithALongWord.

A link with a long text: A link with a long text. A link with a long text. A link with a long text. A link with a long text. A link with a long text. A link with a long text. A link with a long text. A link with a long text. A link with a long text. A link with a long text.

Emphasis #

Italic text Italic text

Bold text

Bold text

Bold and Italic text

Bold and Italic text

Blockquotes #

This is a blockquote demo. This is a blockquote demo. This is a blockquote demo. This is a blockquote demo. This is a blockquote demo. This is a blockquote demo. This is a blockquote demo. This is a blockquote demo.

This is a blockquote. This is a blockquote. This is a blockquote. This is a blockquote. This is a blockquote. This is a blockquote. This is a blockquote.

This is a blockquote. This is a blockquote. This is a blockquote. This is a blockquote. This is a blockquote. This is a blockquote. This is a blockquote.

Lists #

Unordered List #

Ordered List #

  1. First item
  2. Second item
  3. Third item

Code #

Inline Code #

Here is some inline code. Here is longer inline code inline code inline codeinline codeinline codeinline codeinline code.

Code Block with JavaScript Tag #

Line number enabled #

1
2
3
// Comments are in italics. The last character of a line overflows if there is no padding.
// WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
// MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
1
2
3
console.log("Hello")
console.log("Hello")
console.log("Hello")
1
2
3
function sayHello() {
  console.log("Hello, world!"); console.log("Hello, world!"); console.log("Hello, world!"); console.log("Hello, world!");
}

Line number disabled #

// Comments are in italics. The last character of a line overflows if there is no padding.
// https://github.com/CyrusYip/hugo-theme-yue/issues/7
// WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
// MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
function sayHello() {
  console.log("Hello, world!"); console.log("Hello, world!"); console.log("Hello, world!"); console.log("Hello, world!");
}

Code Block with Bash Tag #

1
2
#!/bin/bash
echo "Hello, world!"

Code Block without Language Tag #

1
2
code block without
a language tag.
1
2
code block without
a language tag.

Paragraph.

1
2
This is a code block without a language tag. This is a code block without a language tag. This is a code block without a language tag.
This is a code block without a language tag. This is a code block without a language tag. This is a code block without a language tag.

Paragraph.

1
2
#!/bin/bash
echo "Hello, world!"

Code block indented with four spaces #

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Example HTML5 Document</title>
</head>
<body>
  <p>Test</p>
  <p>Long Text Long Text Long Text Long Text Long Text Long Text Long Text Long Text Long Text Long Text Long Text Long Text Long Text Long Text Long Text Long Text Long Text Long Text Long Text Long Text</p>
</body>
</html>

Code block with Hugo’s internal highlight shortcode #

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Example HTML5 Document</title>
</head>
<body>
  <p>Test</p>
</body>
</html>

Horizontal Rule #

1


2


3


GitHub

Images without caption #

1Alt text2

1Alt text2

Images with caption #

text text

2000×2000 image

text text

200×200 image

text text

iframe #

video #

This is fake video, which is used to test overflow.

Tables #

Ordinary Table #

Header 1Header 2
Cell 1Cell 2
Cell 3Cell 4

Long Table #

Header 1Header 2Header 3Header 4Header 5Header 6Header 7Header 8Header 9Header 10
Cell 1Cell 2Cell 3Cell 4Cell 5Cell 6Cell 7Cell 8Cell 9Cell 10
Cell 11Cell 12Cell 13Cell 14Cell 15Cell 16Cell 17Cell 18Cell 19Cell 20
Cell 21Cell 22Cell 23Cell 24Cell 25Cell 26Cell 27Cell 28Cell 29Cell 30

Long Table with 20 Headers #

Header 1Header 2Header 3Header 4Header 5Header 6Header 7Header 8Header 9Header 10Header 11Header 12Header 13Header 14Header 15Header 16Header 17Header 18Header 19Header 20
Cell 1Cell 2Cell 3Cell 4Cell 5Cell 6Cell 7Cell 8Cell 9Cell 10Cell 11Cell 12Cell 13Cell 14Cell 15Cell 16Cell 17Cell 18Cell 19Cell 20
Cell 21Cell 22Cell 23Cell 24Cell 25Cell 26Cell 27Cell 28Cell 29Cell 30Cell 31Cell 32Cell 33Cell 34Cell 35Cell 36Cell 37Cell 38Cell 39Cell 40
Cell 41Cell 42Cell 43Cell 44Cell 45Cell 46Cell 47Cell 48Cell 49Cell 50Cell 51Cell 52Cell 53Cell 54Cell 55Cell 56Cell 57Cell 58Cell 59Cell 60
Cell 61Cell 62Cell 63Cell 64Cell 65Cell 66Cell 67Cell 68Cell 69Cell 70Cell 71Cell 72Cell 73Cell 74Cell 75Cell 76Cell 77Cell 78Cell 79Cell 80
Cell 81Cell 82Cell 83Cell 84Cell 85Cell 86Cell 87Cell 88Cell 89Cell 90Cell 91Cell 92Cell 93Cell 94Cell 95Cell 96Cell 97Cell 98Cell 99Cell 100
Cell 101Cell 102Cell 103Cell 104Cell 105Cell 106Cell 107Cell 108Cell 109Cell 110Cell 111Cell 112Cell 113Cell 114Cell 115Cell 116Cell 117Cell 118Cell 119Cell 120
Cell 121Cell 122Cell 123Cell 124Cell 125Cell 126Cell 127Cell 128Cell 129Cell 130Cell 131Cell 132Cell 133Cell 134Cell 135Cell 136Cell 137Cell 138Cell 139Cell 140
Cell 141Cell 142Cell 143Cell 144Cell 145Cell 146Cell 147Cell 148Cell 149Cell 150Cell 151Cell 152Cell 153Cell 154Cell 155Cell 156Cell 157Cell 158Cell 159Cell 160
Cell 161Cell 162Cell 163Cell 164Cell 165Cell 166Cell 167Cell 168Cell 169Cell 170Cell 171Cell 172Cell 173Cell 174Cell 175Cell 176Cell 177Cell 178Cell 179Cell 180
Cell 181Cell 182Cell 183Cell 184Cell 185Cell 186Cell 187Cell 188Cell 189Cell 190Cell 191Cell 192Cell 193Cell 194Cell 195Cell 196Cell 197Cell 198Cell 199Cell 200
Cell 201Cell 202Cell 203Cell 204Cell 205Cell 206Cell 207Cell 208Cell 209Cell 210Cell 211Cell 212Cell 213Cell 214Cell 215Cell 216Cell 217Cell 218Cell 219Cell 220
Cell 221Cell 222Cell 223Cell 224Cell 225Cell 226Cell 227Cell 228Cell 229Cell 230Cell 231Cell 232Cell 233Cell 234Cell 235Cell 236Cell 237Cell 238Cell 239Cell 240
Cell 241Cell 242Cell 243Cell 244Cell 245Cell 246Cell 247Cell 248Cell 249Cell 250Cell 251Cell 252Cell 253Cell 254Cell 255Cell 256Cell 257Cell 258Cell 259Cell 260
Cell 261Cell 262Cell 263Cell 264Cell 265Cell 266Cell 267Cell 268Cell 269Cell 270Cell 271Cell 272Cell 273Cell 274Cell 275Cell 276Cell 277Cell 278Cell 279Cell 280
Cell 281Cell 282Cell 283Cell 284Cell 285Cell 286Cell 287Cell 288Cell 289Cell 290Cell 291Cell 292Cell 293Cell 294Cell 295Cell 296Cell 297Cell 298Cell 299Cell 300
Cell 301Cell 302Cell 303Cell 304Cell 305Cell 306Cell 307Cell 308Cell 309Cell 310Cell 311Cell 312Cell 313Cell 314Cell 315Cell 316Cell 317Cell 318Cell 319Cell 320
Cell 321Cell 322Cell 323Cell 324Cell 325Cell 326Cell 327Cell 328Cell 329Cell 330Cell 331Cell 332Cell 333Cell 334Cell 335Cell 336Cell 337Cell 338Cell 339Cell 340
Cell 341Cell 342Cell 343Cell 344Cell 345Cell 346Cell 347Cell 348Cell 349Cell 350Cell 351Cell 352Cell 353Cell 354Cell 355Cell 356Cell 357Cell 358Cell 359Cell 360
Cell 361Cell 362Cell 363Cell 364Cell 365Cell 366Cell 367Cell 368Cell 369Cell 370Cell 371Cell 372Cell 373Cell 374Cell 375Cell 376Cell 377Cell 378Cell 379Cell 380
Cell 381Cell 382Cell 383Cell 384Cell 385Cell 386Cell 387Cell 388Cell 389Cell 390Cell 391Cell 392Cell 393Cell 394Cell 395Cell 396Cell 397Cell 398Cell 399Cell 400

Task Lists #

Task list:

Strikethrough #

This was a mistake.

Footnotes #

Here is a footnote reference1.


  1. Here is the footnote. ↩︎

Tags: