Skip to content

Commit a22edea

Browse files
code/lang/js/tools/brangr: Fix table to use html
1 parent 5aa8d0c commit a22edea

File tree

1 file changed

+8
-6
lines changed
  • src/content/code/language-support/javascript/tools

1 file changed

+8
-6
lines changed

src/content/code/language-support/javascript/tools/brangr.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,11 @@ query {
3333
}
3434
```
3535
Brangr renders the above query as roughly this HTML (though not in a quote block):
36-
>heroes...
37-
>| First | Last |
38-
>| --- | --- |
39-
>| Arthur | Dent |
40-
>| Ford | Prefect |
41-
>| Zaphod | Beeblebrox |
36+
<blockquote>heroes...
37+
<table>
38+
<tr><th>First </th><th>Last </th></tr>
39+
<tr><td>Arthur</td><td>Dent </td></tr>
40+
<tr><td>Ford </td><td>Prefect </td></tr>
41+
<tr><td>Zaphod</td><td>Beeblebrox</td></tr>
42+
</table>
43+
</blockquote>

0 commit comments

Comments
 (0)