Something went wrong while setting issue due date.
Missing bracket closure in "doc/Doxygen/css/doxyMod.css" leads to broken code flow in Doxygen
The missing bracket closure in , for which a fix is provided in the patch below, will fix the current issue that occurs in the included source code files that are rendered with Doxygen.
For example, this page for temperatureCoupledBase.C
, as we can also see in the image below (left is the current result for the unfixed file, on the right when the fix is implemented), is not using the correct format for ensuring the verbatim render for the source code lines:
The patch for fixing this is as follows:
diff --git a/doc/Doxygen/css/doxyMod.css b/doc/Doxygen/css/doxyMod.css
index 46ac2df..fbb968f 100644
--- a/doc/Doxygen/css/doxyMod.css
+++ b/doc/Doxygen/css/doxyMod.css
@@ -118,6 +118,8 @@ tr.memlist
.OFPlainTable tr td {
height: 20px;
padding-left: 5px;
+}
+
div.line,
span.comment,
span.keyword,
In addition, this can easily be used to fix the current file that is located at http://openfoam.com/documentation/cpp-guide/css/doxyMod.css