diff options
Diffstat (limited to 'test/command')
-rw-r--r-- | test/command/7397.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/command/7397.md b/test/command/7397.md index ca8b6a482..24ce391b0 100644 --- a/test/command/7397.md +++ b/test/command/7397.md @@ -1,4 +1,4 @@ -``` +```` % pandoc -t markdown ~~~~ { .haskell startFrom="100"} qsort [] = [] @@ -11,4 +11,4 @@ qsort [] = [] qsort (x:xs) = qsort (filter (< x) xs) ++ [x] ++ qsort (filter (>= x) xs) ``` -``` +```` |