Open FedericoCeratto opened 4 years ago
Sometimes C sources processed by c2nim contain doxygen syntax e.g.:
## @mainpage My project ## @section intro_sec Introduction ## @param[in] flags Special options for this operation.
We could either have c2nim detect and strip them away or do it manually, but this is a bit wasteful because such comments are useful.
Alternative, nim doc could detect them and hide them from the output, as a first step.
nim doc
In future, nim doc could use such comments to change HTML styling around sections, parameters and so on.
Partially related to #12353 #4517
related:
Sometimes C sources processed by c2nim contain doxygen syntax e.g.:
We could either have c2nim detect and strip them away or do it manually, but this is a bit wasteful because such comments are useful.
Alternative,
nim doc
could detect them and hide them from the output, as a first step.In future,
nim doc
could use such comments to change HTML styling around sections, parameters and so on.Partially related to #12353 #4517