/**
* | A | B |
* | - | - |
* | 123 | This should be a long line with
* a line break without breaking the table |
* | A further | row |
*/
Doxygen在“with”之后停止表解析。我该如何防止这种行为?
答案 0 :(得分:1)
我发现使用表格的标记不够方便。如果你将切换到html fromat,你可以随时打破你的问题。 我已经在我的表的Doxyfile中创建了以下别名来简化代码:
"table_start_b{1}=<table><caption align= bottom>\1</caption>" \
"table_start_t{1}=<table><caption align= top>\1</caption>" \
"table_end=</table>" \
"table_h2{2}=<tr><th>\1</th><th>\2</th></tr>" \
"table_row2{2}=<tr><td align= center>\1</td><td align= center>\2</td></tr>" \
并使用如下:
\table_start_t{Abbreviations}
\table_h2{
Acronym ,
Description }
\table_row2{ "TBD" , "To be
defined" }
\table_end
在任何地方都有换行没问题。