Hello, I'm currently documenting a C++ API using Concepts.
I have defined the following in my conf.py:
This works fine for concepts with single template parameter:
>:iterconcept:`RandomAccessIterator`
However, when there is more than one parameter, it fails horribly:
>:iterconcept:`Sentinel<I> <Sentinel>`
I tried to escape the first angle brackets with backslashes, with no success.
My goal is to get the correct link with std::Sentinel<I> rendered.
Am I missing something obvious?
Thanks,
Theo