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
{{< figure src="/images/vim_cursor_move.png" title="Hugo figure Sample" >}}
images without markdown
![Good Job! Penta!](/images/twitter.jpg "Good Job! Penta! image")
tweet
{{< tweet 545530512727478273 >}}
YouTube
{{< youtube wl1Bw6uQK3s >}}
Small Font Size
<font size = 0.8em>Small Font Size</font>
pygments sample
{{< 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”
1 2 3 4 5 6 7 8 | <section id="main">
<div>
<h1 id="title">{{ .Title }}</h1>
{{ range .Data.Pages }}
{{ .Render "summary"}}
{{ end }}
</div>
</section>
|
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>
次へ