Updated Clang Format Text Style (markdown) authored by williamfgc's avatar williamfgc
...@@ -8,10 +8,12 @@ ...@@ -8,10 +8,12 @@
<ul> <ul>
<li>Examples: <strong>timeInitial</strong> instead of <strong>tIni</strong>, or <strong>work</strong> instead of <strong>wrk</strong></li> <li>Examples: <strong>timeInitial</strong> instead of <strong>tIni</strong>, or <strong>work</strong> instead of <strong>wrk</strong></li>
<li>One Exception: when redefining long types with the keyword using some mnemonics and short names is allowed, always document scope. </li> <li>One Exception: when redefining long types with the keyword using some mnemonics and short names is allowed, always document scope. </li>
<li>```cpp <li>
// local 2D Vector of doubles
using std::vector<std::vector<double>> = vDouble2D; ```cpp
``` // local 2D Vector of doubles
using std::vector<std::vector<double>> = vDouble2D;
```
</li> </li>
</ul> </ul>
... ...
......