예, HTML을 사용하여 병합 할 수 있습니다. .md
Github 에서 파일로 테이블을 만들 때 항상 마크 다운 대신 HTML 코드를 사용하고 싶습니다.
Github Flavored Markdown 은 기본 HTML을 지원합니다.md
파일 합니다. 따라서 이것이 답이 될 것입니다.
HTML과 혼합 된 마크 다운 :
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
| <ul><li>item1</li><li>item2</li></ul>| See the list | from the first column|
또는 순수한 HTML :
<table>
<tbody>
<tr>
<th>Tables</th>
<th align="center">Are</th>
<th align="right">Cool</th>
</tr>
<tr>
<td>col 3 is</td>
<td align="center">right-aligned</td>
<td align="right">$1600</td>
</tr>
<tr>
<td>col 2 is</td>
<td align="center">centered</td>
<td align="right">$12</td>
</tr>
<tr>
<td>zebra stripes</td>
<td align="center">are neat</td>
<td align="right">$1</td>
</tr>
<tr>
<td>
<ul>
<li>item1</li>
<li>item2</li>
</ul>
</td>
<td align="center">See the list</td>
<td align="right">from the first column</td>
</tr>
</tbody>
</table>
이것이 Github에서 보이는 방식입니다.
style="list-style: none"
는ul
요소에 태그 를 허용하지 않는 것 같습니다 .