Skip to content

Commit

Permalink
Fix table formatting
Browse files Browse the repository at this point in the history
Apparently pipes, even within a code span, need to be escaped in
GitHub markdown inside a table or it gets confused.
  • Loading branch information
tokenrove committed Apr 12, 2019
1 parent fecb2b1 commit aa8f77e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions stage_2.md
Expand Up @@ -94,9 +94,9 @@ The following table summarizes the fd redirections:
| operator | default fd | operation |
| --- | --- | --- |
| _[n]_`<`_f_ | 0 | open _f_ `O_RDONLY` |
| _[n]_`>`_f_ | 1 | open _f_ `O_CREAT|O_TRUNC|O_WRONLY` |
| _[n]_`>>`_f_ | 1 | open _f_ `O_CREAT|O_APPEND|O_WRONLY` |
| _[n]_`<>`_f_ | 0 | open _f_ `O_CREAT|O_RDWR` |
| _[n]_`>`_f_ | 1 | open _f_ `O_CREAT \| O_TRUNC \| O_WRONLY` |
| _[n]_`>>`_f_ | 1 | open _f_ `O_CREAT \| O_APPEND \| O_WRONLY` |
| _[n]_`<>`_f_ | 0 | open _f_ `O_CREAT \| O_RDWR` |
| _[n]_`<&`_m_ | 0 | dup _n_ to _m_ (close if _m_ is `-`) |
| _[n]_`&>`_m_ | 1 | dup _n_ to _m_ (close if _m_ is `-`) |

Expand Down

0 comments on commit aa8f77e

Please sign in to comment.