-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
Hello and thank you for this awesome repo, it's made generating FFI's much easier for me.
I am having an issue when transforming doxygen's \return.
If given this doxygen comment:
\\return DPFPDD_SUCCESS: Library was initialized;\n\\return DPFPDD_E_FAILURE: Failed to initialize library.
Which looks like this:
Returns
DPFPDD_SUCCESS: Library was initialized;
DPFPDD_E_FAILURE: Failed to initialize library.
doxgen-bindgen::transform outputs:
# Returns\n\nDPFPDD_SUCCESS: Library was initialized;\nDPFPDD_E_FAILURE: Failed to initialize library.
Which looks like this:
Returns
DPFPDD_SUCCESS: Library was initialized; DPFPDD_E_FAILURE: Failed to initialize library.
What I am wonder is if its possible to format multiple \returns similar to how \params are formatted, as a list, like such:
Returns
DPFPDD_SUCCESS - Library was initialized;
DPFPDD_E_FAILURE - Failed to initialize library.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels