1 // PERMUTE_ARGS:
2 // REQUIRED_ARGS: -D -Dd${RESULTS_DIR}/compilable -o- -preview=markdown
3 // POST_SCRIPT: compilable/extra-files/ddocAny-postscript.sh
4 
5 /*
6 TEST_OUTPUT:
7 ----
8 ----
9 */
10 
11 /++
12 # Quote Blocks
13 
14 > “It seems to me that most of the ‘new’ programming languages fall into one of
15 two categories: Those from academia with radical new paradigms and those from
16 large corporations with a focus on RAD and the web. Maybe it’s time for a new
17 language born out of practical experience implementing compilers.” -- Michael
18 
19 > Great, just what I need.. another D in programming. -- Segfault
20 
21 > To D, or not to D. -- Willeam NerdSpeare
22 
23 > "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."
24 -- Richard Deeman
25 
26 Here's a bit of text between quotes.
27 
28 > This is a quote
29 > > And this is a nested quote
30 
31 > This is a quote with a > symbol in it
32 
33 > This is a quote
34 with a continuation
35 
36 > This quote
37 - is ended by this list
38 
39 > This quote
40 ### is ended by this heading
41 
42 > This quote is ended by a thematic break:
43 ____
44 
45 > This quote
46 ```
47 is ended by this code
48 ```
49 
50 > ### Some things inside a quote block:
51 > ___
52 > ---
53 > Some code
54 > ---
55 > - a list
56 
57 +/
58 module test.compilable.ddoc_markdown_code;