Commit 7428a00
authored
Update README removing invalid operators (#58)
## Summary
- Fix Markdown table formatting for Logical OR and Bitwise OR operators
- Remove non-existent "Logical NOT" operator from the operators table
## Details
This PR addresses formatting issues in the README's operators table:
1. **Removed Logical NOT operator**: This operator was listed in the
table but [doesn't exist in the library's
implementation](https://beltoforion.de/en/muparserx/).
2. **Fixed Logical OR operator display**: Changed from plain text `a ||
b` to HTML entity encoding `<code>a || b</code>` to prevent
Markdown table parsing issues
3. **Fixed Bitwise OR operator display**: Changed from plain text `a |
b` to HTML entity encoding `<code>a | b</code>` to prevent Markdown
table cell separation issues1 parent 3a79bde commit 7428a00
1 file changed
Lines changed: 2 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
154 | 154 | | |
155 | 155 | | |
156 | 156 | | |
157 | | - | |
158 | | - | |
| 157 | + | |
159 | 158 | | |
160 | | - | |
| 159 | + | |
161 | 160 | | |
162 | 161 | | |
163 | 162 | | |
| |||
0 commit comments