diff options
| author | John MacFarlane <fiddlosopher@gmail.com> | 2013-12-09 20:31:47 -0800 | 
|---|---|---|
| committer | John MacFarlane <fiddlosopher@gmail.com> | 2013-12-09 20:31:47 -0800 | 
| commit | f9662957704ebfe83d7764dd64151d37c476c0b0 (patch) | |
| tree | d4a62a3fe9fcb048ebdd97ace3d082b307cad32a /tests | |
| parent | 571480eb4a864bcca250a210a3c137633f32c93e (diff) | |
| download | pandoc-f9662957704ebfe83d7764dd64151d37c476c0b0.tar.gz | |
Don't use tilde code blocks with braced attributes in gfm output.
A consequence of this change is that the backtick form will be
preferred in general if both are enabled.  I think that is good,
as it is much more widespread than the tilde form.
Closes #1084.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/lhs-test.markdown | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/tests/lhs-test.markdown b/tests/lhs-test.markdown index 47ec920d3..75a253bf4 100644 --- a/tests/lhs-test.markdown +++ b/tests/lhs-test.markdown @@ -4,11 +4,11 @@ lhs test  `unsplit` is an arrow that takes a pair of values and combines them to return  a single value: -~~~~ {.sourceCode .literate .haskell} +``` {.sourceCode .literate .haskell}  unsplit :: (Arrow a) => (b -> c -> d) -> a (b, c) d  unsplit = arr . uncurry            -- arr (\op (x,y) -> x `op` y) -~~~~ +```  `(***)` combines two arrows into a new arrow by running the two arrows on a  pair of values (one arrow on the first item of the pair and one arrow on the | 
