Github ReadMeのためのスタイリング


スタイリングのヒント


Markdownは、スタイリングを制限していますが、githubリポジトリ上でより良い視聴体験のためにいくつかのHTMLを活用することができます.

ラインブレイク


マークダウン



3 Empty Spaces`   `   
Second line

HTML



HTML</br>Second Line

アライン



マークダウン

| Default | <- Left <- | -> Center <- | -> Right -> |
| ------- | :--------- | :----------: | ----------: |
| Text    | Left       | Center       | Right       |

HTML

<p>Left</p>

<p align="center">Center</p>

<p align="right">Right</p>

<a><img alt="Left"></a> <a><img align="right" alt="Right"></a>

<table>
<tr>
<td valign="top" width="33%">
<h2 align="center">Col 1</h2>
-----------------------------
-----------------------------
-----------------------------
-----------------------------
</td>
<td width="34%">
<h5 align="center">Col 2</h5>
<p align="center">Missing valign="top"</p>
</td>
<td valign="top" width="33%">
<h2 align="center">Col 3</h2>
-----------------------------
-----------------------------
-----------------------------
-----------------------------
</td>
</tr>
</table>