SamrudhNelli wrote:

```
<td>
{{#Description}}
<!-- whatever logic ... --->
{{/Description}}
{{^Description}} -- {{/Description}}
</td>
```
The problem with the above format is that for enums with a Description. a 
trailing new line will be added due to the {{^Description}} check. 

Current code:
```
<td>{{#Description}}
<!-- whatever logic ... --->
{{/Description}}
{{^Description}} -- {{/Description}}</td>
```
Alternative (Remove adding "--" for empty cells):
```
<td>
{{#Description}}
<!-- whatever logic ... --->
{{/Description}}
</td>
```

https://github.com/llvm/llvm-project/pull/183085
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to