Fix rendering of pipes in code blocks across dialects
Pipes inside of code blocks inside of tables seem to pose a challenge for some Markdown renderers. Not a problem for Github's but this page is occasionally embedded in other documentation (such as nixery.dev)
This commit is contained in:
parent
19d6d5a16c
commit
5f4664ad5a
1 changed files with 2 additions and 2 deletions
|
@ -117,8 +117,8 @@ Nix has several operators, most of which are unsurprising:
|
|||
| `==` | Equality |
|
||||
| `>`, `>=`, `<`, `<=` | Ordering comparators |
|
||||
| `&&` | Logical `AND` |
|
||||
| `\|\|` | Logical `OR` |
|
||||
| `e1 -> e2` | Logical implication (i.e. `!e1 \|\| e2`) |
|
||||
| <code>||</code> | Logical `OR` |
|
||||
| `e1 -> e2` | Logical implication (i.e. <code>!e1 || e2</code>) |
|
||||
| `!` | Boolean negation |
|
||||
| `set.attr` | Access attribute `attr` in attribute set `set` |
|
||||
| `set ? attribute` | Test whether attribute set contains an attribute |
|
||||
|
|
Loading…
Reference in a new issue