You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{@ocaml[
typet = { foo: intlist }
let x = {foo = [1;2;3]}
let k =10
]}
It will produce:
[code
type t = { foo; int list }
let x = {foo = [1; 2; 3
]
let k = 10
]} -- invisible
When writing code by hand, it's trivially fixable by adding, for example, small spaces. But if the code is an output of MDX or formatted by OCamlformat, it can be more annoying!
The text was updated successfully, but these errors were encountered:
Let's consider this example:
It will produce:
When writing code by hand, it's trivially fixable by adding, for example, small spaces. But if the code is an output of MDX or formatted by OCamlformat, it can be more annoying!
The text was updated successfully, but these errors were encountered: