极为优秀的标记语言语法 Markdown is created by Daring Fireball, the original guideline is here. Its syntax, however, varies between different parsers or editors. Please note that HTML fragments in markdown source will be recognized but not parsed or rendered. Also, there may be small reformatting on the original markdown source code after saving. Paragraph and line breaks A paragraph is simply one
normal use Note example: {{% notice note %}} A notice disclaimer {{% /notice %}} Result: You could custom title : {{% notice note 笔记 %}} A notice disclaimer {{% /notice %}} tip {{% notice tip %}} A tip disclaimer {{% /tip %}} info {{% notice info %}} A info disclaimer {{% /notice %}} warning {{% notice warning %}} A warning disclaimer {{% /notice %}}
What a Shortcode is 学习方法,反复阅读,反复练习 Hugo为补充标准Markdown,推出若干自定义的关键字方便用户使用。 Hugo loves Markdown because of its simple content format, but there are times when Markdown falls
Introduction Hugo官方文档,需要学习。 This tutorial will show you how to create a simple theme in Hugo. I assume that you are familiar with HTML, the bash command line, and that you are comfortable using Markdown to format content. I’ll explain how Hugo uses templates and how you can organize your templates to create a theme. I won’t cover
使用Hugo 经常使用 Hugo 的几个命令,需要积累 hugo new site blogsite hugo new about.md hugo new post/first.md hugo server 启动Hugo服务 hugo server --bind="0.0.0.0" -v -w -p 80 -b http://www.readmorejoy.com hugo server --bind=0.0.0.0 -p 80 -b http://www.readmorejoy.com hugo server --liveReloadPort=443 --baseURL=https://www.readmorejoy.com --appendPort=false Hugo开发人员