Github markdown full-width 2 column table.
EXAMPLE TEXT |
EXAMPLE TEXT |
---|---|
{
"foo": [
{
"bar": "hello world"
}
]
} |
{
"foo": [
{
"bar": "hello world"
}
]
} |
Column 1 | Column 2 |
Don't indent the syntax, Github seems to have issues with indentation.
<table>
<tr>
<th align="center">
<img width="441" height="1">
<p>
<small>
EXAMPLE TEXT
</small>
</p>
</th>
<th align="center">
<img width="441" height="1">
<p>
<small>
EXAMPLE TEXT
</small>
</p>
</th>
</tr>
<tr>
<td>
<!-- REMOVE THE BACKSLASHES -->
\```jsonc
{
"foo": [
{
"bar": "hello world"
}
]
}
\```
</td>
<td>
<!-- REMOVE THE BACKSLASHES -->
\```jsonc
{
"foo": [
{
"bar": "hello world"
}
]
}
\```
</td>
</tr>
<tr>
<td align="center">
Column 1
</td>
<td align="center">
Column 2
</td>
</tr>
</table>
Clever. Thanks :)