Hi,
I’m struggling with odoc a bit. If I have the following interface:
val bla : unit -> char
then it renders as it is with odoc. But if I do:
open Base
val bla : unit -> char
it gets rendered (annoyingly) as:
val bla : Base.unit -> Base.char
Is there any way to remap, e.g., Base.char to char in odoc somehow?