Thank you for your useful tool.
The following Doxygen style for C++ does not get formatted correctly:
/// Releases the value referenced by `handle` if `deleter` is true then
/// calls `deleter` on it.
/// - `handle` : The handle identifying the value to remove.
/// - `deleter` : Callable with signature `bool deleter(T*)`.
template<typename deleter_u_>
bool erase(hxhandle_t handle_, const deleter_u_& deleter_) noexcept;
It ends up looking like this:
/// Releases the value referenced by `handle` if `deleter` is true then
/// calls `deleter` on it. - `handle` : The handle identifying the value to
/// remove. - `deleter` : Callable with signature `bool deleter(T*)`.
template<typename deleter_u_>
bool erase(hxhandle_t handle_, const deleter_u_& deleter_) noexcept;
Which makes it hard to reformat the docs for a number of functions all at once.
Doxygen Native Commands are old and tired. Markdown is shiny and new. Please enable Markdown formatting in Doxygen comments. There could always be an option to turn it off.
Thank you for your useful tool.
The following Doxygen style for C++ does not get formatted correctly:
It ends up looking like this:
Which makes it hard to reformat the docs for a number of functions all at once.
Doxygen Native Commands are old and tired. Markdown is shiny and new. Please enable Markdown formatting in Doxygen comments. There could always be an option to turn it off.