ボスの目の前でポストを作成して即反映するデモ
でも、ミーティング中時間がなくて空振りでした
んがふふ
環境 ローカルマシン(Ubuntu 16.04 LTS) GitHubアカウントがあること 参考になるブログなど HUGO使い方
「Hugoは静的Webページ変換ツールの1つ」
「基本的にはMarkdownで記事を書き, Hugoを起動して変換してもらって所定の静的なWebページを作る.」
HugoとGitHub Pagesで静的サイトを公開する
Hugoのインストール (Ubuntu 16.04 LTS) × 古いhugoがインストールされる $ sudo apt-get install hugo × これでもだいぶ古い $ wget https://github.com/gohugoio/hugo/releases/download/v0.40.2/hugo_0.40.2_Linux-64bit.deb $ sudo apt install ./hugo_0.40.2_Linux-64bit.deb ○ 太田まさんが使っているバージョン $ wget https://github.com/gohugoio/hugo/releases/download/v0.68.3/hugo_0.68.3_Linux-64bit.deb $ sudo apt install ./hugo_0.68.3_Linux-64bit.deb サイト(hugo_blog)を作る $ hugo new site hugo_blog Congratulations! Your new Hugo site is created in "/home/tomonobu/git/hugo_blog". gitにコミット $ cd hugo_blog $ git init . $ git add -A $ git commit -m "Init Hugo.
Read more
テーブル Tables Are Cool col 3 is right-aligned $1600 col 2 is centered $12 zebra stripes are neat $1 Hugo Markdown Cheatsheet
文字装飾 strong
コード var s = "JavaScript syntax highlighting"; alert(s); s = "Python syntax highlighting" print s 番号付きリスト aaa bbb ccc EOF
My first post.