Open lecopivo opened 2 months ago
This seems to be a bug with the reference manual code, rather than the contents of this one.
In any case, I believe I just pushed a fix over there:
It does require that the variable
commands be in code blocks. This isn't ideal, but it's what I can make happen at just this moment.
Code block
```lean ... ```
and inline{lean}`...`
does not see identifiers introduced byvariable
command.For inline code, I'm suspecting that
Elab.Term.elabTerm stx none
is missing some version ofrunTermElabM
. I'm expecting that this should workbut there is no lift from
CommandElabM
toDocElabM
mwe where
import DemoTextbook.Exts.Exercises
should probably be replaces withimport Manual.Meta
: