1592d38821
This brings our handling of them into alignment with CommonMark's. Closes #??.
20 lines
263 B
Markdown
20 lines
263 B
Markdown
`````
|
|
% pandoc -t native
|
|
```haskell
|
|
let x = y
|
|
in y
|
|
```
|
|
^D
|
|
[CodeBlock ("",["haskell"],[]) "let x = y\nin y"]
|
|
`````
|
|
`````
|
|
% pandoc -t native
|
|
~~~ {.haskell}
|
|
let x = y
|
|
in y +
|
|
y +
|
|
y
|
|
~~~
|
|
^D
|
|
[CodeBlock ("",["haskell"],[]) " let x = y\nin y +\ny +\ny"]
|
|
`````
|