Closed Veetaha closed 3 weeks ago
It's same as github.
| Form | Meaning
|---------------------------------|----------------------------
| `#[builder(with = |...| expr)]` | Custom *infallible* closure
is rendered as
Form | Meaning |
---|---|
#[builder(with = |...| expr)] |
Custom infallible closure |
You'll need to escape |
using backslash:
| Form | Meaning
|---------------------------------|----------------------------
| `#[builder(with = \|...\| expr)]` | Custom *infallible* closure
Form | Meaning |
---|---|
#[builder(with = \|...\| expr)] |
Custom infallible closure |
spec - https://github.github.com/gfm/#example-200
You should use something like https://marketplace.visualstudio.com/items?itemName=DavidAnson.vscode-markdownlint to easily spot these or format your code using prettier or something that supports gfm.
Thanks for the clarification! I've added prettier
Describe the bug
I tried writing this table:
and this was rendered:
I assume the
|
inside of backticks is invalidly interpreted as the termination of the cell.Validations