To start to learn Hexo is a very insteresting thing. It takes time to understand the structure and learn to use git tools, as well as the markdown language.
Following below links to start hexo travel.
Basic about Hexo
- Hexo main website. Hexo
- Hexo and Git, chinese website Hello dog
- Theme, NexT
- Markdown editor, this is web editor Cmd Markdown
- Tag plugins. Hexo official site
Examples for plugins.
1. If we would like to do a quote, we use below
1 | {% blockquote David Levithan, Wide Awake %} |
2. If we want to quote a image, it is better to use asset.
1 | {% asset_img example.jpg This is an example image %} |
3. To quote a code, we can reference to the link
1 | {% codeblock [title] [lang:language] [url] [link text] %} |
it will render like1
code snippet
4. Tag plugs example
1 | {% centerquote %} |
will render as
blah blah blah
Wanlu
5. Insert image example
1 | {% asset_img [class names] /path/to/image [width] [height] [title text [alt text]] %} |
which will render as