From 43afb984c4ca7e0d01e7f48b3f398d7cf7dcf8fa Mon Sep 17 00:00:00 2001 From: Brandon Weaver Date: Tue, 3 Oct 2017 17:06:07 -0700 Subject: [PATCH] fix readme (#749) [skip ci] Amusingly the pipeline OP "breaks" the readme formatting because Markdown likes the `|` character a bit too much. Escaping the `|` fixes this and makes the readme display properly --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a52b15b344..1401fc62c6 100644 --- a/README.md +++ b/README.md @@ -149,7 +149,7 @@ require("babylon").parse("code", { | `bigInt` ([proposal](https://github.com/tc39/proposal-bigint)) | `100n` | | `optionalCatchBinding` ([proposal](https://github.com/babel/proposals/issues/7)) | `try {throw 0;} catch{do();}` | | `throwExpressions` ([proposal](https://github.com/babel/proposals/issues/23)) | `() => throw new Error("")` | -| `pipelineOperator` ([proposal](https://github.com/babel/proposals/issues/29)) | `a |> b` | +| `pipelineOperator` ([proposal](https://github.com/babel/proposals/issues/29)) | `a \|> b` | ### FAQ