POST TEST
upload shell script test @ 4
HTML Escape
<table border=1 width="200px">
<tr><td width="100px"><center>
▼</center></td><td><center>
●</center></td></tr>
<tr><td><center>
▼</center></td><td><center>
●</center></td>
</tr>
</table>
Row/Column | Column 1 |
---|---|
< | < |
> | > |
\ | \ |
/ | / |
& | & |
{ | { |
} | } |
Skeleton のスタイルを使った場合
( <thead> と <tbody> を使う )
<table class="u-full-width">
<thead>
<tr>
<th>@</th>
<th>@</th>
</tr>
</thead>
<tboby>
<tr><td>
@</td><td>
@</td></tr>
<tr><td>
@</td><td>
@</td></tr>
</tbody>
</table>
figure
画像の表示 markdown
{{< figure src="/images/Tako_Berodasi.gif" title="Sample" >}}
another, show image without markdown
![Twitter Icon](/images/twitter.jpg "Twitter")
結果
figure src よりも hugo の機能を使った方が楽に書けるけれど、使わないと忘れる。
tweet
{{< tweet 545530512727478273 >}}
"GJ! Penta Complete Edition" available.http://t.co/sMyPzGwqvt pic.twitter.com/ge70p55IKY
— Prester John (@Presbyter_Johan) December 18, 2014
YouTube
{{< youtube wl1Bw6uQK3s >}}
Small Font Size
{{< size-s "文字列" >}}
<font size = 0.8em>Small Font Size</font>
pygments sample
{{< highlight python "linenos=inline, hl_lines=2 3" >}}
{{< highlight html "noclasses=False" >}}
{{< highlight python "linenos=table, hl_lines=2 3" >}}
<pygments sample>TEST</sample>
{{< /highlight }}
{{< highlight python "linenos=table, hl_lines=2 3" >}}
|
|
{{< highlight python "linenos=inline, hl_lines=2 3" >}}
1<section id="main">
2 <div>
3 <h1 id="title">{{ .Title }}</h1>
4 {{ range .Data.Pages }}
5 {{ .Render "summary"}}
6 {{ end }}
7 </div>
8</section>
前へ