Idris2 icon indicating copy to clipboard operation
Idris2 copied to clipboard

Nested code blocks are ignored in literate markdown

Open joelberkeley opened this issue 7 months ago • 1 comments

Steps to Reproduce

Type check the following markdown

```idris
x : Nat
x = ""
```

* some text
  ```idris
  y : Nat
  y = ""
  ```

Expected Behavior

Both code blocks fail type-checking

Observed Behavior

Only the first fails

joelberkeley avatar Jul 01 '24 22:07 joelberkeley