Open
Description
Hi!
Here is what I do:
I put a YAML document separator (---
) within an indented triple-quote:
- Example YAML with multiple docs in it:
```yaml
key1: value1
---
key2 value2
```
Here is what I'm expecting:
something looking like this
- Example YAML with multiple docs in it:
key1: value1 --- key2: value2
Here is what I see instead:
The ---
disappears, the triple quote doesn't seem to be interpreted, and there is an horizontal line in the middle.
it looks like this
- Same thing without the extra #:
```yaml key1: value1
key2: value2 ```
Extra information:
Just in case GitHub formatting isn't super clear, here is a jsfiddle exhibiting the issue:
https://jsfiddle.net/Lhwucmkb/3/
I haven't dived in the code yet so no idea how gnarly this is going to be 😅