The JAVADOC_AUTOBRIEF setting seems a very nice convenience, so that instead of writing:
/// \brief Brief description.
/// Brief description continued.
///
/// Detailed description starts here.
You can write:
/// Brief description; brief description continued.
///
/// Detailed description starts here.
Yet where I have used the ;
here to merge content into a single sentence, I would like to have the option of somehow preventing a period from ending the brief description.
When I went to poke through the source a little, I found a suggestion that you could get around this precise problem by escaping the period. However: /// Brief description\. Brief description continued.
did not work for me.
Based on that suggestion, what appeared to work instead was "escaping the space" as /// Brief description.\ Brief description continued
. I'm not convinced that's an actual "feature" of doxygen, and I just confused it and it ignored an error state.
Can anyone confirm for me that the documentation is incorrect about
\.
space being used for this purpose? (If so, does anyone involved with doxygen who followed the tag here want to file the report about that?)If
\
(backslash-space) isn't an approved way to escape space, then is there an endorsed way? I tried several things it didn't like... such as.
.