d: Merge upstream dmd, druntime 26f049fb26, phobos 330d6a4fd.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / ddoc_markdown_quote.d
blob27cfc430b8ddcb829c43f31ab9479ae66ebe863c
1 // PERMUTE_ARGS:
2 // REQUIRED_ARGS: -D -Dd${RESULTS_DIR}/compilable -o-
3 // TEST_OUTPUT_FILE: extra-files/ddoc_markdown_quote.html
4 // OUTPUT_FILES: ${RESULTS_DIR}/compilable/ddoc_markdown_quote.html
6 /++
7 # Quote Blocks
9 > “It seems to me that most of the ‘new’ programming languages fall into one of
10 two categories: Those from academia with radical new paradigms and those from
11 large corporations with a focus on RAD and the web. Maybe it’s time for a new
12 language born out of practical experience implementing compilers.” -- Michael
14 > Great, just what I need.. another D in programming. -- Segfault
16 > To D, or not to D. -- Willeam NerdSpeare
18 > "What I am going to tell you about is what we teach our programming students in the third or fourth year of graduate school... It is my task to convince you not to turn away because you don't understand it. You see my programming students don't understand it... That is because I don't understand it. Nobody does."
19 -- Richard Deeman
21 Here's a bit of text between quotes.
23 > This is a quote
24 > > And this is a nested quote
26 > This is a quote with a > symbol in it
28 > This is a quote
29 with a continuation
31 > This quote
32 - is ended by this list
34 > This quote
35 ### is ended by this heading
37 > This quote is ended by a thematic break:
38 ____
40 > This quote
41 ```
42 is ended by this code
43 ```
45 > ### Some things inside a quote block:
46 > ___
47 > ---
48 > Some code
49 > ---
50 > - a list
53 module test.compilable.ddoc_markdown_code;