├── .clang-format ├── .github └── workflows │ ├── codeql-analysis.yml │ └── testing.yml ├── .gitignore ├── 3rdparty └── doctest │ ├── LICENSE.txt │ └── doctest.h ├── CMakeLists.txt ├── LICENSES ├── BSD-2-Clause.txt ├── CC-BY-4.0.txt ├── CC-BY-SA-4.0.txt ├── CC0-1.0.txt └── MIT.txt ├── README.md ├── REUSE.toml ├── apply-clang-format.sh ├── codecov.yml ├── conanfile.txt ├── docs ├── commonmark.md ├── md4qt-README.qdocinc ├── md4qt-index.qdoc ├── md4qt-known_issues.qdoc ├── md4qt-known_issues.qdocinc ├── md4qt.qdoc └── md4qt.qdocconf ├── known_issues.md ├── md4qt-config.cmake.in ├── src ├── algo.cpp ├── algo.h ├── asterisk_emphasis_parser.cpp ├── asterisk_emphasis_parser.h ├── atx_heading_parser.cpp ├── atx_heading_parser.h ├── autolink_parser.cpp ├── autolink_parser.h ├── block_parser.cpp ├── block_parser.h ├── blockquote_parser.cpp ├── blockquote_parser.h ├── constants.h ├── context.cpp ├── context.h ├── doc.cpp ├── doc.h ├── emphasis_parser.cpp ├── emphasis_parser.h ├── entities_map.cpp ├── entities_map.h ├── fenced_code_parser.cpp ├── fenced_code_parser.h ├── footnote_parser.cpp ├── footnote_parser.h ├── gfm_autolink_parser.cpp ├── gfm_autolink_parser.h ├── hard_line_break_parser.cpp ├── hard_line_break_parser.h ├── html.cpp ├── html.h ├── html_parser.cpp ├── html_parser.h ├── indented_code_parser.cpp ├── indented_code_parser.h ├── inline_code_parser.cpp ├── inline_code_parser.h ├── inline_context.cpp ├── inline_context.h ├── inline_html_parser.cpp ├── inline_html_parser.h ├── inline_math_parser.cpp ├── inline_math_parser.h ├── inline_parser.cpp ├── inline_parser.h ├── link_image_parser.cpp ├── link_image_parser.h ├── list_parser.cpp ├── list_parser.h ├── paragraph_parser.cpp ├── paragraph_parser.h ├── parser.cpp ├── parser.h ├── poscache.cpp ├── poscache.h ├── reverse_solidus.cpp ├── reverse_solidus.h ├── setext_heading_parser.cpp ├── setext_heading_parser.h ├── strikethrough_emphasis_parser.cpp ├── strikethrough_emphasis_parser.h ├── table_parser.cpp ├── table_parser.h ├── text_stream.cpp ├── text_stream.h ├── thematic_break_parser.cpp ├── thematic_break_parser.h ├── underline_emphasis_parser.cpp ├── underline_emphasis_parser.h ├── utils.cpp ├── utils.h ├── visitor.cpp ├── visitor.h ├── yaml_parser.cpp └── yaml_parser.h ├── tests ├── CMakeLists.txt ├── auto │ ├── CMakeLists.txt │ ├── algo │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── bench │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ ├── LICENSE │ │ │ ├── block-bq-flat.md │ │ │ ├── block-bq-nested.md │ │ │ ├── block-code.md │ │ │ ├── block-fences.md │ │ │ ├── block-heading.md │ │ │ ├── block-hr.md │ │ │ ├── block-html.md │ │ │ ├── block-lheading.md │ │ │ ├── block-list-flat.md │ │ │ ├── block-list-nested.md │ │ │ ├── block-ref-flat.md │ │ │ ├── block-ref-nested.md │ │ │ ├── inline-autolink.md │ │ │ ├── inline-backticks.md │ │ │ ├── inline-em-flat.md │ │ │ ├── inline-em-nested.md │ │ │ ├── inline-em-worst.md │ │ │ ├── inline-entity.md │ │ │ ├── inline-escape.md │ │ │ ├── inline-html.md │ │ │ ├── inline-links-flat.md │ │ │ ├── inline-links-nested.md │ │ │ ├── inline-newlines.md │ │ │ ├── lorem1.md │ │ │ └── rawtabs.md │ │ └── main.cpp │ ├── commonmark │ │ ├── 0.30 │ │ │ ├── 001.md │ │ │ ├── 002.md │ │ │ ├── 003.md │ │ │ ├── 004.md │ │ │ ├── 005.md │ │ │ ├── 006.md │ │ │ ├── 007.md │ │ │ ├── 008.md │ │ │ ├── 009.md │ │ │ ├── 010.md │ │ │ ├── 011.md │ │ │ ├── 012.md │ │ │ ├── 013.md │ │ │ ├── 014.md │ │ │ ├── 015.md │ │ │ ├── 016.md │ │ │ ├── 017.md │ │ │ ├── 018.md │ │ │ ├── 019.md │ │ │ ├── 020.md │ │ │ ├── 021.md │ │ │ ├── 022.md │ │ │ ├── 023.md │ │ │ ├── 024.md │ │ │ ├── 025.md │ │ │ ├── 026.md │ │ │ ├── 027.md │ │ │ ├── 028.md │ │ │ ├── 029.md │ │ │ ├── 030.md │ │ │ ├── 031.md │ │ │ ├── 032.md │ │ │ ├── 033.md │ │ │ ├── 034.md │ │ │ ├── 035.md │ │ │ ├── 036.md │ │ │ ├── 037.md │ │ │ ├── 038.md │ │ │ ├── 039.md │ │ │ ├── 040.md │ │ │ ├── 041.md │ │ │ ├── 042.md │ │ │ ├── 043.md │ │ │ ├── 044.md │ │ │ ├── 045.md │ │ │ ├── 046.md │ │ │ ├── 047.md │ │ │ ├── 048.md │ │ │ ├── 049.md │ │ │ ├── 050.md │ │ │ ├── 051.md │ │ │ ├── 052.md │ │ │ ├── 053.md │ │ │ ├── 054.md │ │ │ ├── 055.md │ │ │ ├── 056.md │ │ │ ├── 057.md │ │ │ ├── 058.md │ │ │ ├── 059.md │ │ │ ├── 060.md │ │ │ ├── 061.md │ │ │ ├── 062.md │ │ │ ├── 063.md │ │ │ ├── 064.md │ │ │ ├── 065.md │ │ │ ├── 066.md │ │ │ ├── 067.md │ │ │ ├── 068.md │ │ │ ├── 069.md │ │ │ ├── 070.md │ │ │ ├── 071.md │ │ │ ├── 072.md │ │ │ ├── 073.md │ │ │ ├── 074.md │ │ │ ├── 075.md │ │ │ ├── 076.md │ │ │ ├── 077.md │ │ │ ├── 078.md │ │ │ ├── 079.md │ │ │ ├── 080.md │ │ │ ├── 081.md │ │ │ ├── 082.md │ │ │ ├── 083.md │ │ │ ├── 084.md │ │ │ ├── 085.md │ │ │ ├── 086.md │ │ │ ├── 087.md │ │ │ ├── 088.md │ │ │ ├── 089.md │ │ │ ├── 090.md │ │ │ ├── 091.md │ │ │ ├── 092.md │ │ │ ├── 093.md │ │ │ ├── 094.md │ │ │ ├── 095.md │ │ │ ├── 096.md │ │ │ ├── 097.md │ │ │ ├── 098.md │ │ │ ├── 099.md │ │ │ ├── 100.md │ │ │ ├── 101.md │ │ │ ├── 102.md │ │ │ ├── 103.md │ │ │ ├── 104.md │ │ │ ├── 105.md │ │ │ ├── 106.md │ │ │ ├── 107.md │ │ │ ├── 108.md │ │ │ ├── 109.md │ │ │ ├── 110.md │ │ │ ├── 111.md │ │ │ ├── 112.md │ │ │ ├── 113.md │ │ │ ├── 114.md │ │ │ ├── 115.md │ │ │ ├── 116.md │ │ │ ├── 117.md │ │ │ ├── 118.md │ │ │ ├── 119.md │ │ │ ├── 120.md │ │ │ ├── 121.md │ │ │ ├── 122.md │ │ │ ├── 123.md │ │ │ ├── 124.md │ │ │ ├── 125.md │ │ │ ├── 126.md │ │ │ ├── 127.md │ │ │ ├── 128.md │ │ │ ├── 129.md │ │ │ ├── 130.md │ │ │ ├── 131.md │ │ │ ├── 132.md │ │ │ ├── 133.md │ │ │ ├── 134.md │ │ │ ├── 135.md │ │ │ ├── 136.md │ │ │ ├── 137.md │ │ │ ├── 138.md │ │ │ ├── 139.md │ │ │ ├── 140.md │ │ │ ├── 141.md │ │ │ ├── 142.md │ │ │ ├── 143.md │ │ │ ├── 144.md │ │ │ ├── 145.md │ │ │ ├── 146.md │ │ │ ├── 147.md │ │ │ ├── 148.md │ │ │ ├── 149.md │ │ │ ├── 150.md │ │ │ ├── 151.md │ │ │ ├── 152.md │ │ │ ├── 153.md │ │ │ ├── 154.md │ │ │ ├── 155.md │ │ │ ├── 156.md │ │ │ ├── 157.md │ │ │ ├── 158.md │ │ │ ├── 159.md │ │ │ ├── 160.md │ │ │ ├── 161.md │ │ │ ├── 162.md │ │ │ ├── 163.md │ │ │ ├── 164.md │ │ │ ├── 165.md │ │ │ ├── 166.md │ │ │ ├── 167.md │ │ │ ├── 168.md │ │ │ ├── 169.md │ │ │ ├── 170.md │ │ │ ├── 171.md │ │ │ ├── 172.md │ │ │ ├── 173.md │ │ │ ├── 174.md │ │ │ ├── 175.md │ │ │ ├── 176.md │ │ │ ├── 177.md │ │ │ ├── 178.md │ │ │ ├── 179.md │ │ │ ├── 180.md │ │ │ ├── 181.md │ │ │ ├── 182.md │ │ │ ├── 183.md │ │ │ ├── 184.md │ │ │ ├── 185.md │ │ │ ├── 186.md │ │ │ ├── 187.md │ │ │ ├── 188.md │ │ │ ├── 189.md │ │ │ ├── 190.md │ │ │ ├── 191.md │ │ │ ├── 192.md │ │ │ ├── 193.md │ │ │ ├── 194.md │ │ │ ├── 195.md │ │ │ ├── 196.md │ │ │ ├── 197.md │ │ │ ├── 198.md │ │ │ ├── 199.md │ │ │ ├── 200.md │ │ │ ├── 201.md │ │ │ ├── 202.md │ │ │ ├── 203.md │ │ │ ├── 204.md │ │ │ ├── 205.md │ │ │ ├── 206.md │ │ │ ├── 207.md │ │ │ ├── 208.md │ │ │ ├── 209.md │ │ │ ├── 210.md │ │ │ ├── 211.md │ │ │ ├── 212.md │ │ │ ├── 213.md │ │ │ ├── 214.md │ │ │ ├── 215.md │ │ │ ├── 216.md │ │ │ ├── 217.md │ │ │ ├── 218.md │ │ │ ├── 219.md │ │ │ ├── 220.md │ │ │ ├── 221.md │ │ │ ├── 222.md │ │ │ ├── 223.md │ │ │ ├── 224.md │ │ │ ├── 225.md │ │ │ ├── 226.md │ │ │ ├── 227.md │ │ │ ├── 228.md │ │ │ ├── 229.md │ │ │ ├── 230.md │ │ │ ├── 231.md │ │ │ ├── 232.md │ │ │ ├── 233.md │ │ │ ├── 234.md │ │ │ ├── 235.md │ │ │ ├── 236.md │ │ │ ├── 237.md │ │ │ ├── 238.md │ │ │ ├── 239.md │ │ │ ├── 240.md │ │ │ ├── 241.md │ │ │ ├── 242.md │ │ │ ├── 243.md │ │ │ ├── 244.md │ │ │ ├── 245.md │ │ │ ├── 246.md │ │ │ ├── 247.md │ │ │ ├── 248.md │ │ │ ├── 249.md │ │ │ ├── 250.md │ │ │ ├── 251.md │ │ │ ├── 252.md │ │ │ ├── 253.md │ │ │ ├── 254.md │ │ │ ├── 255.md │ │ │ ├── 256.md │ │ │ ├── 257.md │ │ │ ├── 258.md │ │ │ ├── 259.md │ │ │ ├── 260.md │ │ │ ├── 261.md │ │ │ ├── 262.md │ │ │ ├── 263.md │ │ │ ├── 264.md │ │ │ ├── 265.md │ │ │ ├── 266.md │ │ │ ├── 267.md │ │ │ ├── 268.md │ │ │ ├── 269.md │ │ │ ├── 270.md │ │ │ ├── 271.md │ │ │ ├── 272.md │ │ │ ├── 273.md │ │ │ ├── 274.md │ │ │ ├── 275.md │ │ │ ├── 276.md │ │ │ ├── 277.md │ │ │ ├── 278.md │ │ │ ├── 279.md │ │ │ ├── 280.md │ │ │ ├── 281.md │ │ │ ├── 282.md │ │ │ ├── 283.md │ │ │ ├── 284.md │ │ │ ├── 285.md │ │ │ ├── 286.md │ │ │ ├── 287.md │ │ │ ├── 288.md │ │ │ ├── 289.md │ │ │ ├── 290.md │ │ │ ├── 291.md │ │ │ ├── 292.md │ │ │ ├── 293.md │ │ │ ├── 294.md │ │ │ ├── 295.md │ │ │ ├── 296.md │ │ │ ├── 297.md │ │ │ ├── 298.md │ │ │ ├── 299.md │ │ │ ├── 300.md │ │ │ ├── 301.md │ │ │ ├── 302.md │ │ │ ├── 303.md │ │ │ ├── 304.md │ │ │ ├── 305.md │ │ │ ├── 306.md │ │ │ ├── 307.md │ │ │ ├── 308.md │ │ │ ├── 309.md │ │ │ ├── 310.md │ │ │ ├── 311.md │ │ │ ├── 312.md │ │ │ ├── 313.md │ │ │ ├── 314.md │ │ │ ├── 315.md │ │ │ ├── 316.md │ │ │ ├── 317.md │ │ │ ├── 318.md │ │ │ ├── 319.md │ │ │ ├── 320.md │ │ │ ├── 321.md │ │ │ ├── 322.md │ │ │ ├── 323.md │ │ │ ├── 324.md │ │ │ ├── 325.md │ │ │ ├── 326.md │ │ │ ├── 327.md │ │ │ ├── 328.md │ │ │ ├── 329.md │ │ │ ├── 330.md │ │ │ ├── 331.md │ │ │ ├── 332.md │ │ │ ├── 333.md │ │ │ ├── 334.md │ │ │ ├── 335.md │ │ │ ├── 336.md │ │ │ ├── 337.md │ │ │ ├── 338.md │ │ │ ├── 339.md │ │ │ ├── 340.md │ │ │ ├── 341.md │ │ │ ├── 342.md │ │ │ ├── 343.md │ │ │ ├── 344.md │ │ │ ├── 345.md │ │ │ ├── 346.md │ │ │ ├── 347.md │ │ │ ├── 348.md │ │ │ ├── 349.md │ │ │ ├── 350.md │ │ │ ├── 351.md │ │ │ ├── 352.md │ │ │ ├── 353.md │ │ │ ├── 354.md │ │ │ ├── 355.md │ │ │ ├── 356.md │ │ │ ├── 357.md │ │ │ ├── 358.md │ │ │ ├── 359.md │ │ │ ├── 360.md │ │ │ ├── 361.md │ │ │ ├── 362.md │ │ │ ├── 363.md │ │ │ ├── 364.md │ │ │ ├── 365.md │ │ │ ├── 366.md │ │ │ ├── 367.md │ │ │ ├── 368.md │ │ │ ├── 369.md │ │ │ ├── 370.md │ │ │ ├── 371.md │ │ │ ├── 372.md │ │ │ ├── 373.md │ │ │ ├── 374.md │ │ │ ├── 375.md │ │ │ ├── 376.md │ │ │ ├── 377.md │ │ │ ├── 378.md │ │ │ ├── 379.md │ │ │ ├── 380.md │ │ │ ├── 381.md │ │ │ ├── 382.md │ │ │ ├── 383.md │ │ │ ├── 384.md │ │ │ ├── 385.md │ │ │ ├── 386.md │ │ │ ├── 387.md │ │ │ ├── 388.md │ │ │ ├── 389.md │ │ │ ├── 390.md │ │ │ ├── 391.md │ │ │ ├── 392.md │ │ │ ├── 393.md │ │ │ ├── 394.md │ │ │ ├── 395.md │ │ │ ├── 396.md │ │ │ ├── 397.md │ │ │ ├── 398.md │ │ │ ├── 399.md │ │ │ ├── 400.md │ │ │ ├── 401.md │ │ │ ├── 402.md │ │ │ ├── 403.md │ │ │ ├── 404.md │ │ │ ├── 405.md │ │ │ ├── 406.md │ │ │ ├── 407.md │ │ │ ├── 408.md │ │ │ ├── 409.md │ │ │ ├── 410.md │ │ │ ├── 411.md │ │ │ ├── 412.md │ │ │ ├── 413.md │ │ │ ├── 414.md │ │ │ ├── 415.md │ │ │ ├── 416.md │ │ │ ├── 417.md │ │ │ ├── 418.md │ │ │ ├── 419.md │ │ │ ├── 420.md │ │ │ ├── 421.md │ │ │ ├── 422.md │ │ │ ├── 423.md │ │ │ ├── 424.md │ │ │ ├── 425.md │ │ │ ├── 426.md │ │ │ ├── 427.md │ │ │ ├── 428.md │ │ │ ├── 429.md │ │ │ ├── 430.md │ │ │ ├── 431.md │ │ │ ├── 432.md │ │ │ ├── 433.md │ │ │ ├── 434.md │ │ │ ├── 435.md │ │ │ ├── 436.md │ │ │ ├── 437.md │ │ │ ├── 438.md │ │ │ ├── 439.md │ │ │ ├── 440.md │ │ │ ├── 441.md │ │ │ ├── 442.md │ │ │ ├── 443.md │ │ │ ├── 444.md │ │ │ ├── 445.md │ │ │ ├── 446.md │ │ │ ├── 447.md │ │ │ ├── 448.md │ │ │ ├── 449.md │ │ │ ├── 450.md │ │ │ ├── 451.md │ │ │ ├── 452.md │ │ │ ├── 453.md │ │ │ ├── 454.md │ │ │ ├── 455.md │ │ │ ├── 456.md │ │ │ ├── 457.md │ │ │ ├── 458.md │ │ │ ├── 459.md │ │ │ ├── 460.md │ │ │ ├── 461.md │ │ │ ├── 462.md │ │ │ ├── 463.md │ │ │ ├── 464.md │ │ │ ├── 465.md │ │ │ ├── 466.md │ │ │ ├── 467.md │ │ │ ├── 468.md │ │ │ ├── 469.md │ │ │ ├── 470.md │ │ │ ├── 471.md │ │ │ ├── 472.md │ │ │ ├── 473.md │ │ │ ├── 474.md │ │ │ ├── 475.md │ │ │ ├── 476.md │ │ │ ├── 477.md │ │ │ ├── 478.md │ │ │ ├── 479.md │ │ │ ├── 480.md │ │ │ ├── 481.md │ │ │ ├── 482.md │ │ │ ├── 483.md │ │ │ ├── 484.md │ │ │ ├── 485.md │ │ │ ├── 486.md │ │ │ ├── 487.md │ │ │ ├── 488.md │ │ │ ├── 489.md │ │ │ ├── 490.md │ │ │ ├── 491.md │ │ │ ├── 492.md │ │ │ ├── 493.md │ │ │ ├── 494.md │ │ │ ├── 495.md │ │ │ ├── 496.md │ │ │ ├── 497.md │ │ │ ├── 498.md │ │ │ ├── 499.md │ │ │ ├── 500.md │ │ │ ├── 501.md │ │ │ ├── 502.md │ │ │ ├── 503.md │ │ │ ├── 504.md │ │ │ ├── 505.md │ │ │ ├── 506.md │ │ │ ├── 507.md │ │ │ ├── 508.md │ │ │ ├── 509.md │ │ │ ├── 510.md │ │ │ ├── 511.md │ │ │ ├── 512.md │ │ │ ├── 513.md │ │ │ ├── 514.md │ │ │ ├── 515.md │ │ │ ├── 516.md │ │ │ ├── 517.md │ │ │ ├── 518.md │ │ │ ├── 519.md │ │ │ ├── 520.md │ │ │ ├── 521.md │ │ │ ├── 522.md │ │ │ ├── 523.md │ │ │ ├── 524.md │ │ │ ├── 525.md │ │ │ ├── 526.md │ │ │ ├── 527.md │ │ │ ├── 528.md │ │ │ ├── 529.md │ │ │ ├── 530.md │ │ │ ├── 531.md │ │ │ ├── 532.md │ │ │ ├── 533.md │ │ │ ├── 534.md │ │ │ ├── 535.md │ │ │ ├── 536.md │ │ │ ├── 537.md │ │ │ ├── 538.md │ │ │ ├── 539.md │ │ │ ├── 540.md │ │ │ ├── 541.md │ │ │ ├── 542.md │ │ │ ├── 543.md │ │ │ ├── 544.md │ │ │ ├── 545.md │ │ │ ├── 546.md │ │ │ ├── 547.md │ │ │ ├── 548.md │ │ │ ├── 549.md │ │ │ ├── 550.md │ │ │ ├── 551.md │ │ │ ├── 552.md │ │ │ ├── 553.md │ │ │ ├── 554.md │ │ │ ├── 555.md │ │ │ ├── 556.md │ │ │ ├── 557.md │ │ │ ├── 558.md │ │ │ ├── 559.md │ │ │ ├── 560.md │ │ │ ├── 561.md │ │ │ ├── 562.md │ │ │ ├── 563.md │ │ │ ├── 564.md │ │ │ ├── 565.md │ │ │ ├── 566.md │ │ │ ├── 567.md │ │ │ ├── 568.md │ │ │ ├── 569.md │ │ │ ├── 570.md │ │ │ ├── 571.md │ │ │ ├── 572.md │ │ │ ├── 573.md │ │ │ ├── 574.md │ │ │ ├── 575.md │ │ │ ├── 576.md │ │ │ ├── 577.md │ │ │ ├── 578.md │ │ │ ├── 579.md │ │ │ ├── 580.md │ │ │ ├── 581.md │ │ │ ├── 582.md │ │ │ ├── 583.md │ │ │ ├── 584.md │ │ │ ├── 585.md │ │ │ ├── 586.md │ │ │ ├── 587.md │ │ │ ├── 588.md │ │ │ ├── 589.md │ │ │ ├── 590.md │ │ │ ├── 591.md │ │ │ ├── 592.md │ │ │ ├── 593.md │ │ │ ├── 594.md │ │ │ ├── 595.md │ │ │ ├── 596.md │ │ │ ├── 597.md │ │ │ ├── 598.md │ │ │ ├── 599.md │ │ │ ├── 600.md │ │ │ ├── 601.md │ │ │ ├── 602.md │ │ │ ├── 603.md │ │ │ ├── 604.md │ │ │ ├── 605.md │ │ │ ├── 606.md │ │ │ ├── 607.md │ │ │ ├── 608.md │ │ │ ├── 609.md │ │ │ ├── 610.md │ │ │ ├── 611.md │ │ │ ├── 612.md │ │ │ ├── 613.md │ │ │ ├── 614.md │ │ │ ├── 615.md │ │ │ ├── 616.md │ │ │ ├── 617.md │ │ │ ├── 618.md │ │ │ ├── 619.md │ │ │ ├── 620.md │ │ │ ├── 621.md │ │ │ ├── 622.md │ │ │ ├── 623.md │ │ │ ├── 624.md │ │ │ ├── 625.md │ │ │ ├── 626.md │ │ │ ├── 627.md │ │ │ ├── 628.md │ │ │ ├── 629.md │ │ │ ├── 630.md │ │ │ ├── 631.md │ │ │ ├── 632.md │ │ │ ├── 633.md │ │ │ ├── 634.md │ │ │ ├── 635.md │ │ │ ├── 636.md │ │ │ ├── 637.md │ │ │ ├── 638.md │ │ │ ├── 639.md │ │ │ ├── 640.md │ │ │ ├── 641.md │ │ │ ├── 642.md │ │ │ ├── 643.md │ │ │ ├── 644.md │ │ │ ├── 645.md │ │ │ ├── 646.md │ │ │ ├── 647.md │ │ │ ├── 648.md │ │ │ ├── 649.md │ │ │ ├── 650.md │ │ │ ├── 651.md │ │ │ ├── 652.md │ │ │ ├── convert │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── spec_to_mds.cpp │ │ │ └── spec.json │ │ ├── 0.31.2 │ │ │ ├── 354.md │ │ │ ├── 625.md │ │ │ ├── 626.md │ │ │ └── spec.json │ │ ├── 0_31_2.cpp │ │ ├── 6.8-6.9.cpp │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── autolinks.cpp │ │ ├── backslash.cpp │ │ ├── blockquote.cpp │ │ ├── blocks.cpp │ │ ├── code_spans.cpp │ │ ├── emphasis-1-10.cpp │ │ ├── emphasis-11-17.cpp │ │ ├── entity.cpp │ │ ├── hard_line_breaks.cpp │ │ ├── html_blocks.cpp │ │ ├── images.cpp │ │ ├── link_ref.cpp │ │ ├── links-1.cpp │ │ ├── links-2.cpp │ │ ├── list_items.cpp │ │ ├── lists.cpp │ │ ├── load.h │ │ ├── paragraphs.cpp │ │ ├── raw_html.cpp │ │ └── tabs.cpp │ ├── gfm │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── data │ │ │ ├── 198.md │ │ │ ├── 199.md │ │ │ ├── 200.md │ │ │ ├── 201.md │ │ │ ├── 202.md │ │ │ ├── 203.md │ │ │ ├── 204.md │ │ │ ├── 205.md │ │ │ ├── 279.md │ │ │ ├── 280.md │ │ │ ├── 491.md │ │ │ └── 492.md │ │ └── main.cpp │ ├── html │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ ├── 001.md │ │ │ ├── 002.md │ │ │ ├── 003.md │ │ │ ├── 004.md │ │ │ ├── 005.md │ │ │ ├── 006.md │ │ │ ├── 007.md │ │ │ ├── 008.md │ │ │ ├── 009.md │ │ │ ├── 010.md │ │ │ ├── 011.md │ │ │ ├── 012.md │ │ │ ├── 013.md │ │ │ ├── 014.md │ │ │ ├── 015.md │ │ │ ├── 016.md │ │ │ ├── 017.md │ │ │ ├── 018.md │ │ │ ├── 019.md │ │ │ └── 020.md │ │ └── main01.cpp │ ├── plugins │ │ ├── CMakeLists.txt │ │ ├── emphasis │ │ │ ├── CMakeLists.txt │ │ │ ├── bench.cpp │ │ │ ├── data │ │ │ │ ├── 001.md │ │ │ │ ├── 002.md │ │ │ │ ├── 003.md │ │ │ │ ├── 004.md │ │ │ │ ├── 005.md │ │ │ │ ├── 006.md │ │ │ │ ├── 007.md │ │ │ │ ├── 008.md │ │ │ │ ├── 009.md │ │ │ │ ├── 010.md │ │ │ │ ├── 011.md │ │ │ │ ├── 012.md │ │ │ │ ├── 013.md │ │ │ │ ├── 014.md │ │ │ │ ├── 015.md │ │ │ │ ├── 016.md │ │ │ │ ├── 017.md │ │ │ │ ├── 018.md │ │ │ │ ├── 019.md │ │ │ │ ├── 020.md │ │ │ │ ├── 021.md │ │ │ │ ├── 022.md │ │ │ │ ├── 023.md │ │ │ │ ├── 024.md │ │ │ │ ├── 025.md │ │ │ │ ├── 026.md │ │ │ │ ├── 027.md │ │ │ │ ├── 028.md │ │ │ │ ├── 029.md │ │ │ │ ├── 030.md │ │ │ │ ├── 031.md │ │ │ │ └── 032.md │ │ │ └── main.cpp │ │ └── yaml │ │ │ ├── CMakeLists.txt │ │ │ ├── bench.cpp │ │ │ ├── data │ │ │ ├── 001.md │ │ │ ├── 002.md │ │ │ ├── 003.md │ │ │ ├── 004.md │ │ │ └── 005.md │ │ │ └── main.cpp │ ├── poscache │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── test_funcs │ │ ├── CMakeLists.txt │ │ └── main.cpp │ └── test_parser │ │ ├── CMakeLists.txt │ │ ├── data │ │ ├── 001.md │ │ ├── 002.md │ │ ├── 003.md │ │ ├── 004.md │ │ ├── 005.md │ │ ├── 006.md │ │ ├── 007.md │ │ ├── 008.md │ │ ├── 009.md │ │ ├── 010.md │ │ ├── 011.md │ │ ├── 012.md │ │ ├── 013.md │ │ ├── 017.md │ │ ├── 018.md │ │ ├── 019.md │ │ ├── 020.md │ │ ├── 021.md │ │ ├── 022.md │ │ ├── 023.md │ │ ├── 024.md │ │ ├── 025.md │ │ ├── 026.md │ │ ├── 027.md │ │ ├── 028.md │ │ ├── 029.md │ │ ├── 030.md │ │ ├── 031.md │ │ ├── 032.md │ │ ├── 033.md │ │ ├── 034.md │ │ ├── 035.md │ │ ├── 036.md │ │ ├── 037.md │ │ ├── 038.md │ │ ├── 039.md │ │ ├── 040.md │ │ ├── 041.md │ │ ├── 042-1.md │ │ ├── 042.md │ │ ├── 044.md │ │ ├── 045.md │ │ ├── 046.md │ │ ├── 047.md │ │ ├── 048.md │ │ ├── 049.md │ │ ├── 050.md │ │ ├── 051-1.md │ │ ├── 051-2.md │ │ ├── 051.md │ │ ├── 052.md │ │ ├── 053.md │ │ ├── 054.md │ │ ├── 055.md │ │ ├── 056.md │ │ ├── 057.md │ │ ├── 058.md │ │ ├── 059.md │ │ ├── 060.md │ │ ├── 061.md │ │ ├── 062.md │ │ ├── 063.md │ │ ├── 064.md │ │ ├── 065.md │ │ ├── 066.md │ │ ├── 067.md │ │ ├── 068.md │ │ ├── 069.md │ │ ├── 070.md │ │ ├── 071.md │ │ ├── 072.md │ │ ├── 073.md │ │ ├── 074.md │ │ ├── 075.md │ │ ├── 076.md │ │ ├── 077.md │ │ ├── 078.md │ │ ├── 079.md │ │ ├── 080.md │ │ ├── 081.md │ │ ├── 082.md │ │ ├── 083.md │ │ ├── 084.md │ │ ├── 085.md │ │ ├── 086.md │ │ ├── 087.md │ │ ├── 088.md │ │ ├── 089.md │ │ ├── 090.md │ │ ├── 091.md │ │ ├── 092.md │ │ ├── 093.md │ │ ├── 094.md │ │ ├── 095.md │ │ ├── 096.md │ │ ├── 097.md │ │ ├── 098.md │ │ ├── 099.md │ │ ├── 100.md │ │ ├── 101.md │ │ ├── 102.md │ │ ├── 103.md │ │ ├── 104.md │ │ ├── 105.md │ │ ├── 106.md │ │ ├── 107.md │ │ ├── 108.md │ │ ├── 109.md │ │ ├── 110.md │ │ ├── 111.md │ │ ├── 112.md │ │ ├── 113.md │ │ ├── 114.md │ │ ├── 115.md │ │ ├── 116.md │ │ ├── 117.md │ │ ├── 118.md │ │ ├── 119.md │ │ ├── 120.md │ │ ├── 121.md │ │ ├── 122.md │ │ ├── 123.md │ │ ├── 124.md │ │ ├── 125.md │ │ ├── 126.md │ │ ├── 127.md │ │ ├── 128.md │ │ ├── 129.md │ │ ├── 130.md │ │ ├── 131.md │ │ ├── 132.md │ │ ├── 133.md │ │ ├── 134.md │ │ ├── 135.md │ │ ├── 136.md │ │ ├── 137.md │ │ ├── 138.md │ │ ├── 139.md │ │ ├── 140.md │ │ ├── 141.md │ │ ├── 142.md │ │ ├── 143.md │ │ ├── 144.md │ │ ├── 145.md │ │ ├── 146.md │ │ ├── 147.md │ │ ├── 148.md │ │ ├── 149.md │ │ ├── 150.md │ │ ├── 151.md │ │ ├── 152.md │ │ ├── 153.md │ │ ├── 154.md │ │ ├── 155.md │ │ ├── 156.md │ │ ├── 157.md │ │ ├── 158.md │ │ ├── 159.md │ │ ├── 160.md │ │ ├── 161.md │ │ ├── 162.md │ │ ├── 163.md │ │ ├── 164.md │ │ ├── 165.md │ │ ├── 166.md │ │ ├── 167.md │ │ ├── 168.md │ │ ├── 169.md │ │ ├── 170.md │ │ ├── 171.md │ │ ├── 172.md │ │ ├── 173.md │ │ ├── 174.md │ │ ├── 175.md │ │ ├── 176.md │ │ ├── 177.md │ │ ├── 178.md │ │ ├── 179.md │ │ ├── 180.md │ │ ├── 181.md │ │ ├── 182.md │ │ ├── 183.md │ │ ├── 184.md │ │ ├── 185.md │ │ ├── 186.md │ │ ├── 187.md │ │ ├── 188.md │ │ ├── 189.md │ │ ├── 190.md │ │ ├── 191.md │ │ ├── 192.md │ │ ├── 193.md │ │ ├── 194.md │ │ ├── 195.md │ │ ├── 196.md │ │ ├── 197.md │ │ ├── 198.md │ │ ├── 199.md │ │ ├── 200.md │ │ ├── 201.md │ │ ├── 202.md │ │ ├── 203.md │ │ ├── 204.md │ │ ├── 205.md │ │ ├── 206.md │ │ ├── 207.md │ │ ├── 208.md │ │ ├── 209.md │ │ ├── 210.md │ │ ├── 211.md │ │ ├── 212.md │ │ ├── 213.md │ │ ├── 214.md │ │ ├── 215.md │ │ ├── 216.md │ │ ├── 217.md │ │ ├── 218.md │ │ ├── 219.md │ │ ├── 220.md │ │ ├── 221.md │ │ ├── 222.md │ │ ├── 223.md │ │ ├── 224.md │ │ ├── 225.md │ │ ├── 226.md │ │ ├── 227.md │ │ ├── 228.md │ │ ├── 229.md │ │ ├── 230.md │ │ ├── 231.md │ │ ├── 232.md │ │ ├── 233.md │ │ ├── 234.md │ │ ├── 235.md │ │ ├── 236.md │ │ ├── 237.md │ │ ├── 238.md │ │ ├── 239.md │ │ ├── 240.md │ │ ├── 241.md │ │ ├── 242.md │ │ ├── 243-1.md │ │ ├── 243.md │ │ ├── 244-1.md │ │ ├── 245.md │ │ ├── 246.md │ │ ├── 247.md │ │ ├── 248.md │ │ ├── 249.md │ │ ├── 250.md │ │ ├── 251.md │ │ ├── 252.md │ │ ├── 253.md │ │ ├── 254.md │ │ ├── 255.md │ │ ├── 256.md │ │ ├── 257.md │ │ ├── 258.md │ │ ├── 259.md │ │ ├── 260.md │ │ ├── 261.md │ │ ├── 262.md │ │ ├── 263.md │ │ ├── 264.md │ │ ├── 265.md │ │ ├── 266.md │ │ ├── 267.md │ │ ├── 268.md │ │ ├── 269.md │ │ ├── 270.md │ │ ├── 271.md │ │ ├── 272.md │ │ ├── 273.md │ │ ├── 274.md │ │ ├── 275.md │ │ ├── 276.md │ │ ├── 277.md │ │ ├── 278.md │ │ ├── 279.md │ │ ├── 280.md │ │ ├── 281.md │ │ ├── 282.md │ │ ├── 283.md │ │ ├── 284.md │ │ ├── 285.md │ │ ├── 286.md │ │ ├── 287.md │ │ ├── 288.md │ │ ├── 289.md │ │ ├── 290.md │ │ ├── 291.md │ │ ├── 292.md │ │ ├── 293.md │ │ ├── 294.md │ │ ├── 295.md │ │ ├── 296.md │ │ ├── 297.md │ │ ├── 298.md │ │ ├── 299.md │ │ ├── 300.md │ │ ├── 301.md │ │ ├── 302.md │ │ ├── 303.md │ │ ├── 304-1.md │ │ ├── 304.md │ │ ├── 305.md │ │ ├── 306.md │ │ ├── 307.md │ │ ├── 308.md │ │ ├── 309.md │ │ ├── 310.md │ │ ├── 311.md │ │ ├── 312.md │ │ ├── 313.md │ │ ├── 314.md │ │ ├── 315.md │ │ ├── 316.md │ │ ├── 317.md │ │ ├── 318.md │ │ ├── 319.md │ │ ├── 320.md │ │ ├── 321.md │ │ ├── 322.md │ │ ├── 323.md │ │ ├── 324.md │ │ ├── 325.md │ │ ├── 326.md │ │ ├── a.jpg │ │ ├── a.md │ │ ├── a.png │ │ ├── b.md │ │ └── b.png │ │ ├── main01.cpp │ │ ├── main02.cpp │ │ ├── main03.cpp │ │ ├── main04.cpp │ │ ├── main05.cpp │ │ ├── main06.cpp │ │ ├── main07.cpp │ │ ├── main08.cpp │ │ ├── main09.cpp │ │ ├── main10.cpp │ │ └── main11.cpp ├── manual │ └── complex.md ├── md_benchmark │ ├── 3rdparty │ │ └── cmark-gfm │ │ │ ├── .editorconfig │ │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── ci.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── CheckFileOffsetBits.c │ │ │ ├── CheckFileOffsetBits.cmake │ │ │ ├── FindAsan.cmake │ │ │ ├── README.md │ │ │ ├── api_test │ │ │ ├── CMakeLists.txt │ │ │ ├── cplusplus.cpp │ │ │ ├── cplusplus.h │ │ │ ├── harness.c │ │ │ ├── harness.h │ │ │ └── main.c │ │ │ ├── appveyor.yml │ │ │ ├── bench │ │ │ ├── samples │ │ │ │ ├── block-bq-flat.md │ │ │ │ ├── block-bq-nested.md │ │ │ │ ├── block-code.md │ │ │ │ ├── block-fences.md │ │ │ │ ├── block-heading.md │ │ │ │ ├── block-hr.md │ │ │ │ ├── block-html.md │ │ │ │ ├── block-lheading.md │ │ │ │ ├── block-list-flat.md │ │ │ │ ├── block-list-nested.md │ │ │ │ ├── block-ref-flat.md │ │ │ │ ├── block-ref-nested.md │ │ │ │ ├── inline-autolink.md │ │ │ │ ├── inline-backticks.md │ │ │ │ ├── inline-em-flat.md │ │ │ │ ├── inline-em-nested.md │ │ │ │ ├── inline-em-worst.md │ │ │ │ ├── inline-entity.md │ │ │ │ ├── inline-escape.md │ │ │ │ ├── inline-html.md │ │ │ │ ├── inline-links-flat.md │ │ │ │ ├── inline-links-nested.md │ │ │ │ ├── inline-newlines.md │ │ │ │ ├── lorem1.md │ │ │ │ └── rawtabs.md │ │ │ ├── statistics.py │ │ │ └── stats.py │ │ │ ├── benchmarks.md │ │ │ ├── changelog.txt │ │ │ ├── data │ │ │ └── CaseFolding.txt │ │ │ ├── extensions │ │ │ ├── CMakeLists.txt │ │ │ ├── autolink.c │ │ │ ├── autolink.h │ │ │ ├── cmark-gfm-core-extensions.h │ │ │ ├── core-extensions.c │ │ │ ├── ext_scanners.c │ │ │ ├── ext_scanners.h │ │ │ ├── ext_scanners.re │ │ │ ├── strikethrough.c │ │ │ ├── strikethrough.h │ │ │ ├── table.c │ │ │ ├── table.h │ │ │ ├── tagfilter.c │ │ │ ├── tagfilter.h │ │ │ ├── tasklist.c │ │ │ └── tasklist.h │ │ │ ├── man │ │ │ ├── CMakeLists.txt │ │ │ ├── make_man_page.py │ │ │ ├── man1 │ │ │ │ └── cmark-gfm.1 │ │ │ └── man3 │ │ │ │ └── cmark-gfm.3 │ │ │ ├── nmake.bat │ │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── arena.c │ │ │ ├── blocks.c │ │ │ ├── buffer.c │ │ │ ├── buffer.h │ │ │ ├── case_fold_switch.inc │ │ │ ├── chunk.h │ │ │ ├── cmark-gfm-extension_api.h │ │ │ ├── cmark-gfm.h │ │ │ ├── cmark-gfm_version.h.in │ │ │ ├── cmark.c │ │ │ ├── cmark_ctype.c │ │ │ ├── cmark_ctype.h │ │ │ ├── commonmark.c │ │ │ ├── config.h.in │ │ │ ├── entities.inc │ │ │ ├── footnotes.c │ │ │ ├── footnotes.h │ │ │ ├── houdini.h │ │ │ ├── houdini_href_e.c │ │ │ ├── houdini_html_e.c │ │ │ ├── houdini_html_u.c │ │ │ ├── html.c │ │ │ ├── html.h │ │ │ ├── inlines.c │ │ │ ├── inlines.h │ │ │ ├── iterator.c │ │ │ ├── iterator.h │ │ │ ├── latex.c │ │ │ ├── libcmark-gfm.pc.in │ │ │ ├── linked_list.c │ │ │ ├── main.c │ │ │ ├── man.c │ │ │ ├── map.c │ │ │ ├── map.h │ │ │ ├── node.c │ │ │ ├── node.h │ │ │ ├── parser.h │ │ │ ├── plaintext.c │ │ │ ├── plugin.c │ │ │ ├── plugin.h │ │ │ ├── references.c │ │ │ ├── references.h │ │ │ ├── registry.c │ │ │ ├── registry.h │ │ │ ├── render.c │ │ │ ├── render.h │ │ │ ├── scanners.c │ │ │ ├── scanners.h │ │ │ ├── scanners.re │ │ │ ├── syntax_extension.c │ │ │ ├── syntax_extension.h │ │ │ ├── utf8.c │ │ │ ├── utf8.h │ │ │ └── xml.c │ │ │ ├── suppressions │ │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── cmark-fuzz.c │ │ │ ├── cmark.py │ │ │ ├── entity_tests.py │ │ │ ├── extensions-full-info-string.txt │ │ │ ├── extensions-table-prefer-style-attributes.txt │ │ │ ├── extensions.txt │ │ │ ├── fuzzing_dictionary │ │ │ ├── normalize.py │ │ │ ├── pathological_tests.py │ │ │ ├── regression.txt │ │ │ ├── roundtrip_tests.py │ │ │ ├── run-cmark-fuzz │ │ │ ├── smart_punct.txt │ │ │ ├── spec.txt │ │ │ └── spec_tests.py │ │ │ ├── toolchain-mingw32.cmake │ │ │ ├── tools │ │ │ ├── Dockerfile │ │ │ ├── appveyor-build.bat │ │ │ ├── make_entities_inc.py │ │ │ ├── mkcasefold.pl │ │ │ ├── xml2md.xsl │ │ │ └── xml2md_gfm.xsl │ │ │ ├── why-cmark-and-not-x.md │ │ │ └── wrappers │ │ │ ├── wrapper.js │ │ │ ├── wrapper.py │ │ │ ├── wrapper.rb │ │ │ ├── wrapper.rkt │ │ │ └── wrapper_ext.py │ ├── CMakeLists.txt │ └── main.cpp ├── quick │ ├── CMakeLists.txt │ └── main.cpp └── utils │ └── entity │ ├── CMakeLists.txt │ ├── entities.json │ └── main.cpp └── utils ├── md2html └── main.cpp └── md2qdoc ├── README.md └── main.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/.github/workflows/testing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdparty/doctest/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/3rdparty/doctest/LICENSE.txt -------------------------------------------------------------------------------- /3rdparty/doctest/doctest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/3rdparty/doctest/doctest.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSES/BSD-2-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/LICENSES/BSD-2-Clause.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/LICENSES/CC-BY-4.0.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-SA-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/LICENSES/CC-BY-SA-4.0.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/REUSE.toml -------------------------------------------------------------------------------- /apply-clang-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/apply-clang-format.sh -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/codecov.yml -------------------------------------------------------------------------------- /conanfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/conanfile.txt -------------------------------------------------------------------------------- /docs/commonmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/docs/commonmark.md -------------------------------------------------------------------------------- /docs/md4qt-README.qdocinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/docs/md4qt-README.qdocinc -------------------------------------------------------------------------------- /docs/md4qt-index.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/docs/md4qt-index.qdoc -------------------------------------------------------------------------------- /docs/md4qt-known_issues.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/docs/md4qt-known_issues.qdoc -------------------------------------------------------------------------------- /docs/md4qt-known_issues.qdocinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/docs/md4qt-known_issues.qdocinc -------------------------------------------------------------------------------- /docs/md4qt.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/docs/md4qt.qdoc -------------------------------------------------------------------------------- /docs/md4qt.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/docs/md4qt.qdocconf -------------------------------------------------------------------------------- /known_issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/known_issues.md -------------------------------------------------------------------------------- /md4qt-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/md4qt-config.cmake.in -------------------------------------------------------------------------------- /src/algo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/algo.cpp -------------------------------------------------------------------------------- /src/algo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/algo.h -------------------------------------------------------------------------------- /src/asterisk_emphasis_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/asterisk_emphasis_parser.cpp -------------------------------------------------------------------------------- /src/asterisk_emphasis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/asterisk_emphasis_parser.h -------------------------------------------------------------------------------- /src/atx_heading_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/atx_heading_parser.cpp -------------------------------------------------------------------------------- /src/atx_heading_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/atx_heading_parser.h -------------------------------------------------------------------------------- /src/autolink_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/autolink_parser.cpp -------------------------------------------------------------------------------- /src/autolink_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/autolink_parser.h -------------------------------------------------------------------------------- /src/block_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/block_parser.cpp -------------------------------------------------------------------------------- /src/block_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/block_parser.h -------------------------------------------------------------------------------- /src/blockquote_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/blockquote_parser.cpp -------------------------------------------------------------------------------- /src/blockquote_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/blockquote_parser.h -------------------------------------------------------------------------------- /src/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/constants.h -------------------------------------------------------------------------------- /src/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/context.cpp -------------------------------------------------------------------------------- /src/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/context.h -------------------------------------------------------------------------------- /src/doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/doc.cpp -------------------------------------------------------------------------------- /src/doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/doc.h -------------------------------------------------------------------------------- /src/emphasis_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/emphasis_parser.cpp -------------------------------------------------------------------------------- /src/emphasis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/emphasis_parser.h -------------------------------------------------------------------------------- /src/entities_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/entities_map.cpp -------------------------------------------------------------------------------- /src/entities_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/entities_map.h -------------------------------------------------------------------------------- /src/fenced_code_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/fenced_code_parser.cpp -------------------------------------------------------------------------------- /src/fenced_code_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/fenced_code_parser.h -------------------------------------------------------------------------------- /src/footnote_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/footnote_parser.cpp -------------------------------------------------------------------------------- /src/footnote_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/footnote_parser.h -------------------------------------------------------------------------------- /src/gfm_autolink_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/gfm_autolink_parser.cpp -------------------------------------------------------------------------------- /src/gfm_autolink_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/gfm_autolink_parser.h -------------------------------------------------------------------------------- /src/hard_line_break_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/hard_line_break_parser.cpp -------------------------------------------------------------------------------- /src/hard_line_break_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/hard_line_break_parser.h -------------------------------------------------------------------------------- /src/html.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/html.cpp -------------------------------------------------------------------------------- /src/html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/html.h -------------------------------------------------------------------------------- /src/html_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/html_parser.cpp -------------------------------------------------------------------------------- /src/html_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/html_parser.h -------------------------------------------------------------------------------- /src/indented_code_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/indented_code_parser.cpp -------------------------------------------------------------------------------- /src/indented_code_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/indented_code_parser.h -------------------------------------------------------------------------------- /src/inline_code_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/inline_code_parser.cpp -------------------------------------------------------------------------------- /src/inline_code_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/inline_code_parser.h -------------------------------------------------------------------------------- /src/inline_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/inline_context.cpp -------------------------------------------------------------------------------- /src/inline_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/inline_context.h -------------------------------------------------------------------------------- /src/inline_html_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/inline_html_parser.cpp -------------------------------------------------------------------------------- /src/inline_html_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/inline_html_parser.h -------------------------------------------------------------------------------- /src/inline_math_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/inline_math_parser.cpp -------------------------------------------------------------------------------- /src/inline_math_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/inline_math_parser.h -------------------------------------------------------------------------------- /src/inline_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/inline_parser.cpp -------------------------------------------------------------------------------- /src/inline_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/inline_parser.h -------------------------------------------------------------------------------- /src/link_image_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/link_image_parser.cpp -------------------------------------------------------------------------------- /src/link_image_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/link_image_parser.h -------------------------------------------------------------------------------- /src/list_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/list_parser.cpp -------------------------------------------------------------------------------- /src/list_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/list_parser.h -------------------------------------------------------------------------------- /src/paragraph_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/paragraph_parser.cpp -------------------------------------------------------------------------------- /src/paragraph_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/paragraph_parser.h -------------------------------------------------------------------------------- /src/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/parser.cpp -------------------------------------------------------------------------------- /src/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/parser.h -------------------------------------------------------------------------------- /src/poscache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/poscache.cpp -------------------------------------------------------------------------------- /src/poscache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/poscache.h -------------------------------------------------------------------------------- /src/reverse_solidus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/reverse_solidus.cpp -------------------------------------------------------------------------------- /src/reverse_solidus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/reverse_solidus.h -------------------------------------------------------------------------------- /src/setext_heading_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/setext_heading_parser.cpp -------------------------------------------------------------------------------- /src/setext_heading_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/setext_heading_parser.h -------------------------------------------------------------------------------- /src/table_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/table_parser.cpp -------------------------------------------------------------------------------- /src/table_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/table_parser.h -------------------------------------------------------------------------------- /src/text_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/text_stream.cpp -------------------------------------------------------------------------------- /src/text_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/text_stream.h -------------------------------------------------------------------------------- /src/thematic_break_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/thematic_break_parser.cpp -------------------------------------------------------------------------------- /src/thematic_break_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/thematic_break_parser.h -------------------------------------------------------------------------------- /src/underline_emphasis_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/underline_emphasis_parser.cpp -------------------------------------------------------------------------------- /src/underline_emphasis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/underline_emphasis_parser.h -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/visitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/visitor.cpp -------------------------------------------------------------------------------- /src/visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/visitor.h -------------------------------------------------------------------------------- /src/yaml_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/yaml_parser.cpp -------------------------------------------------------------------------------- /src/yaml_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/src/yaml_parser.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/algo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/algo/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/algo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/algo/main.cpp -------------------------------------------------------------------------------- /tests/auto/bench/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/bench/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/bench/data/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/bench/data/LICENSE -------------------------------------------------------------------------------- /tests/auto/bench/data/block-hr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/bench/data/block-hr.md -------------------------------------------------------------------------------- /tests/auto/bench/data/lorem1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/bench/data/lorem1.md -------------------------------------------------------------------------------- /tests/auto/bench/data/rawtabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/bench/data/rawtabs.md -------------------------------------------------------------------------------- /tests/auto/bench/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/bench/main.cpp -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/001.md: -------------------------------------------------------------------------------- 1 | foo baz bim 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/002.md: -------------------------------------------------------------------------------- 1 | foo baz bim 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/003.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/004.md: -------------------------------------------------------------------------------- 1 | - foo 2 | 3 | bar 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/005.md: -------------------------------------------------------------------------------- 1 | - foo 2 | 3 | bar 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/006.md: -------------------------------------------------------------------------------- 1 | > foo 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/007.md: -------------------------------------------------------------------------------- 1 | - foo 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/008.md: -------------------------------------------------------------------------------- 1 | foo 2 | bar 3 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/009.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/009.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/010.md: -------------------------------------------------------------------------------- 1 | # Foo 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/011.md: -------------------------------------------------------------------------------- 1 | * * * 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/012.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/012.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/013.md: -------------------------------------------------------------------------------- 1 | \ \A\a\ \3\φ\« 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/014.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/015.md: -------------------------------------------------------------------------------- 1 | \\*emphasis* 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/016.md: -------------------------------------------------------------------------------- 1 | foo\ 2 | bar 3 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/017.md: -------------------------------------------------------------------------------- 1 | `` \[\` `` 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/018.md: -------------------------------------------------------------------------------- 1 | \[\] 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/019.md: -------------------------------------------------------------------------------- 1 | ~~~ 2 | \[\] 3 | ~~~ 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/020.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/021.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/022.md: -------------------------------------------------------------------------------- 1 | [foo](/bar\* "ti\*tle") 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/023.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/024.md: -------------------------------------------------------------------------------- 1 | ``` foo\+bar 2 | foo 3 | ``` 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/025.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/026.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/026.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/027.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/027.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/028.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/028.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/029.md: -------------------------------------------------------------------------------- 1 | © 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/030.md: -------------------------------------------------------------------------------- 1 | &MadeUpEntity; 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/031.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/031.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/032.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/032.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/033.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/033.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/034.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/034.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/035.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/035.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/036.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/036.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/037.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/037.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/038.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/038.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/039.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/039.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/040.md: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/041.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/041.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/042.md: -------------------------------------------------------------------------------- 1 | - `one 2 | - two` 3 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/043.md: -------------------------------------------------------------------------------- 1 | *** 2 | --- 3 | ___ 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/044.md: -------------------------------------------------------------------------------- 1 | +++ 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/045.md: -------------------------------------------------------------------------------- 1 | === 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/046.md: -------------------------------------------------------------------------------- 1 | -- 2 | ** 3 | __ 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/047.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/047.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/048.md: -------------------------------------------------------------------------------- 1 | *** 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/049.md: -------------------------------------------------------------------------------- 1 | Foo 2 | *** 3 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/050.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/050.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/051.md: -------------------------------------------------------------------------------- 1 | - - - 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/052.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/052.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/053.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/053.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/054.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/054.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/055.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/055.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/056.md: -------------------------------------------------------------------------------- 1 | *-* 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/057.md: -------------------------------------------------------------------------------- 1 | - foo 2 | *** 3 | - bar 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/058.md: -------------------------------------------------------------------------------- 1 | Foo 2 | *** 3 | bar 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/059.md: -------------------------------------------------------------------------------- 1 | Foo 2 | --- 3 | bar 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/060.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/060.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/061.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/061.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/062.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/062.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/063.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/063.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/064.md: -------------------------------------------------------------------------------- 1 | #5 bolt 2 | 3 | #hashtag 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/065.md: -------------------------------------------------------------------------------- 1 | \## foo 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/066.md: -------------------------------------------------------------------------------- 1 | # foo *bar* \*baz\* 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/067.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/067.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/068.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/068.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/069.md: -------------------------------------------------------------------------------- 1 | # foo 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/070.md: -------------------------------------------------------------------------------- 1 | foo 2 | # bar 3 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/071.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/071.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/072.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/072.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/073.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/073.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/074.md: -------------------------------------------------------------------------------- 1 | ### foo ### b 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/075.md: -------------------------------------------------------------------------------- 1 | # foo# 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/076.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/076.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/077.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/077.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/078.md: -------------------------------------------------------------------------------- 1 | Foo bar 2 | # baz 3 | Bar foo 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/079.md: -------------------------------------------------------------------------------- 1 | ## 2 | # 3 | ### ### 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/080.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/080.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/081.md: -------------------------------------------------------------------------------- 1 | Foo *bar 2 | baz* 3 | ==== 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/082.md: -------------------------------------------------------------------------------- 1 | Foo *bar 2 | baz* 3 | ==== 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/083.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/083.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/084.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/084.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/085.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/085.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/086.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/086.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/087.md: -------------------------------------------------------------------------------- 1 | Foo 2 | --- 3 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/088.md: -------------------------------------------------------------------------------- 1 | Foo 2 | = = 3 | 4 | Foo 5 | --- - 6 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/089.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/089.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/090.md: -------------------------------------------------------------------------------- 1 | Foo\ 2 | ---- 3 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/091.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/091.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/092.md: -------------------------------------------------------------------------------- 1 | > Foo 2 | --- 3 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/093.md: -------------------------------------------------------------------------------- 1 | > foo 2 | bar 3 | === 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/094.md: -------------------------------------------------------------------------------- 1 | - Foo 2 | --- 3 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/095.md: -------------------------------------------------------------------------------- 1 | Foo 2 | Bar 3 | --- 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/096.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/096.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/097.md: -------------------------------------------------------------------------------- 1 | 2 | ==== 3 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/098.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/099.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/099.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/100.md: -------------------------------------------------------------------------------- 1 | foo 2 | --- 3 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/101.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/101.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/102.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/102.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/103.md: -------------------------------------------------------------------------------- 1 | Foo 2 | 3 | bar 4 | --- 5 | baz 6 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/104.md: -------------------------------------------------------------------------------- 1 | Foo 2 | bar 3 | 4 | --- 5 | 6 | baz 7 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/105.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/105.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/106.md: -------------------------------------------------------------------------------- 1 | Foo 2 | bar 3 | \--- 4 | baz 5 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/107.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/107.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/108.md: -------------------------------------------------------------------------------- 1 | - foo 2 | 3 | bar 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/109.md: -------------------------------------------------------------------------------- 1 | 1. foo 2 | 3 | - bar 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/110.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/110.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/111.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/111.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/112.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/112.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/113.md: -------------------------------------------------------------------------------- 1 | Foo 2 | bar 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/114.md: -------------------------------------------------------------------------------- 1 | foo 2 | bar 3 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/115.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/115.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/116.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/116.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/117.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/117.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/118.md: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/119.md: -------------------------------------------------------------------------------- 1 | ``` 2 | < 3 | > 4 | ``` 5 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/120.md: -------------------------------------------------------------------------------- 1 | ~~~ 2 | < 3 | > 4 | ~~~ 5 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/121.md: -------------------------------------------------------------------------------- 1 | `` 2 | foo 3 | `` 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/122.md: -------------------------------------------------------------------------------- 1 | ``` 2 | aaa 3 | ~~~ 4 | ``` 5 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/123.md: -------------------------------------------------------------------------------- 1 | ~~~ 2 | aaa 3 | ``` 4 | ~~~ 5 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/124.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/124.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/125.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/125.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/126.md: -------------------------------------------------------------------------------- 1 | ``` 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/127.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/127.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/128.md: -------------------------------------------------------------------------------- 1 | > ``` 2 | > aaa 3 | 4 | bbb 5 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/129.md: -------------------------------------------------------------------------------- 1 | ``` 2 | 3 | 4 | ``` 5 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/130.md: -------------------------------------------------------------------------------- 1 | ``` 2 | ``` 3 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/131.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/131.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/132.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/132.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/133.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/133.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/134.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/134.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/135.md: -------------------------------------------------------------------------------- 1 | ``` 2 | aaa 3 | ``` 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/136.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/136.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/137.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/137.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/138.md: -------------------------------------------------------------------------------- 1 | ``` ``` 2 | aaa 3 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/139.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/139.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/140.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/140.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/141.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/141.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/142.md: -------------------------------------------------------------------------------- 1 | ```ruby 2 | def foo(x) 3 | return 3 4 | end 5 | ``` 6 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/143.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/143.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/144.md: -------------------------------------------------------------------------------- 1 | ````; 2 | ```` 3 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/145.md: -------------------------------------------------------------------------------- 1 | ``` aa ``` 2 | foo 3 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/146.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/146.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/147.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/147.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/148.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/148.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/149.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/149.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/150.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/150.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/151.md: -------------------------------------------------------------------------------- 1 | 2 | *foo* 3 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/152.md: -------------------------------------------------------------------------------- 1 |
2 | 3 | *Markdown* 4 | 5 |
6 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/153.md: -------------------------------------------------------------------------------- 1 |
3 |
4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/154.md: -------------------------------------------------------------------------------- 1 |
3 |
4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/155.md: -------------------------------------------------------------------------------- 1 |
2 | *foo* 3 | 4 | *bar* 5 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/156.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/160.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/160.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/161.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/161.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/162.md: -------------------------------------------------------------------------------- 1 | 2 | *bar* 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/163.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/163.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/164.md: -------------------------------------------------------------------------------- 1 | 2 | *bar* 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/165.md: -------------------------------------------------------------------------------- 1 | 2 | *bar* 3 | -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/166.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/166.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/167.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/167.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/168.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/168.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/169.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/169.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/170.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/170.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/171.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/171.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/172.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igormironchik/md4qt/HEAD/tests/auto/commonmark/0.30/172.md -------------------------------------------------------------------------------- /tests/auto/commonmark/0.30/173.md: -------------------------------------------------------------------------------- 1 |