We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aa8d0c commit a22edeaCopy full SHA for a22edea
src/content/code/language-support/javascript/tools/brangr.md
@@ -33,9 +33,11 @@ query {
33
}
34
```
35
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 |
+<blockquote>heroes...
+<table>
+ <tr><th>First </th><th>Last </th></tr>
+ <tr><td>Arthur</td><td>Dent </td></tr>
+ <tr><td>Ford </td><td>Prefect </td></tr>
+ <tr><td>Zaphod</td><td>Beeblebrox</td></tr>
42
+</table>
43
+</blockquote>
0 commit comments