-
Notifications
You must be signed in to change notification settings - Fork 39
Open
Description
Consider a Coq project organized like this (assume -Q theories Test
):
theories/
├── A
│ └── A.v
└── B
└── A.v
If I call Alectryon as a coqdoc substitute on each these files with --output-directory X
, I only get a single file X/A.html
in the end. In contrast, coqdoc will generate the files X/Test.A.A.html
and X/Test.B.A.html
. A more detailed discussion of the coqdoc naming scheme can be found in the coq2html documentation.
Is there a reasonable way of changing the current naming approach to work with the coqdoc scheme?