Odoc and shadowing

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?

1 Like

I think you are looking at this issue.

1 Like

Not sure if if that’s exactly what I need bit it does lead to something helpful. The question is how do I pass --open argument to odoc with dune?