note
标签使用
1 | {% note class_name %} blabla {% endnote %} |
效果演示
default
primary
success
info
warning
danger
tabs
标签使用
1 | {% tabs unique_name,default_index %} |
效果演示
1 | {% tabs code,1 %} |
1 |
|
1 |
|
Block Quote
Perfect for adding quotes to your post, with optional author, source and title information.
Alias: quote
1 | {% blockquote [author[, source]] [link] [source_link_title] %} |
Examples
No arguments. Plain blockquote.
1 | {% blockquote %} |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque hendrerit lacus ut purus iaculis feugiat. Sed nec tempor elit, quis aliquam neque. Curabitur sed diam eget dolor fermentum semper at eu lorem.
Quote from a book
1 | {% blockquote David Levithan, Wide Awake %} |
Do not just seek happiness for yourself. Seek happiness for all. Through kindness. Through mercy.
David LevithanWide Awake
Quote from Twitter
1 | {% blockquote @DevDocs https://twitter.com/devdocs/status/356095192085962752 %} |
NEW: DevDocs now comes with syntax highlighting. http://devdocs.io
Quote from an article on the web
1 | {% blockquote Seth Godin http://sethgodin.typepad.com/seths_blog/2009/07/welcome-to-island-marketing.html Welcome to Island Marketing %} |
Every interaction is both precious and an opportunity to delight.
Seth GodinWelcome to Island Marketing
Code Block
Useful feature for adding code snippets to your post.
Alias: code
1 | {% codeblock [title] [lang:language] [url] [link text] [additional options] %} |
Specify additional options in option:value
format, e.g. line_number:false first_line:5
.
Examples
A plain code block
1 | {% codeblock %} |
Specifying the language
1 | {% codeblock lang:objc %} |
Adding a caption to the code block
1 | {% codeblock Array.map %} |
Adding a caption and a URL
1 | {% codeblock _.compact http://underscorejs.org/#compact Underscore.js %} |
Backtick Code Block
This is identical to using a code block, but instead uses three backticks to delimit the block.
1 | [language] [title] [url] [link text] code snippet |
Pull Quote
To add pull quotes to your posts:
1 | {% pullquote [class] %} |
jsFiddle
To embed a jsFiddle snippet:
1 | {% jsfiddle shorttag [tabs] [skin] [width] [height] %} |
Gist
To embed a Gist snippet:
1 | {% gist gist_id [filename] %} |
iframe
To embed an iframe:
1 | {% iframe url [width] [height] %} |
Image
Inserts an image with specified size.
1 | {% img [class names] /path/to/image [width] [height] '"title text" "alt text"' %} |
Link
Inserts a link with target="_blank"
attribute.
1 | {% link text url [external] [title] %} |
Include Code
Inserts code snippets in source/downloads/code
folder. The folder location can be specified through the code_dir
option in the config.
1 | {% include_code [title] [lang:language] [from:line] [to:line] path/to/file %} |
Examples
Embed the whole content of test.js
1 | {% include_code lang:javascript test.js %} |
Embed line 3 only
1 | {% include_code lang:javascript from:3 to:3 test.js %} |
Embed line 5 to 8
1 | {% include_code lang:javascript from:5 to:8 test.js %} |
Embed line 5 to the end of file
1 | {% include_code lang:javascript from:5 test.js %} |
Embed line 1 to 8
1 | {% include_code lang:javascript to:8 test.js %} |
YouTube
Inserts a YouTube video.
1 | {% youtube video_id %} |
Vimeo
Inserts a responsive or specified size Vimeo video.
1 | {% vimeo video_id [width] [height] %} |
Include Posts
Include links to other posts.
1 | {% post_path filename %} |
You can ignore permalink and folder information, like languages and dates, when using this tag.
For instance: .
This will work as long as the filename of the post is how-to-bake-a-cake.md
, even if the post is located at source/posts/2015-02-my-family-holiday
and has permalink 2018/en/how-to-bake-a-cake
.
You can customize the text to display, instead of displaying the post’s title. Using post_path
inside Markdown syntax []()
is not supported.
Post’s title and custom text are escaped by default. You can use the escape
option to disable escaping.
For instance:
Display title of the post.
1 | {% post_link hexo-3-8-released %} |
Display custom text.
1 | {% post_link hexo-3-8-released 'Link to a post' %} |
Escape title.
1 | {% post_link hexo-4-released 'How to use <b> tag in title' %} |
Do not escape title.
1 | {% post_link hexo-4-released '<b>bold</b> custom title' false %} |
Include Assets
Include post assets.
1 | {% asset_path filename %} |
Raw
If certain content is causing processing issues in your posts, wrap it with the raw
tag to avoid rendering errors.
1 | {% raw %} |
Post Excerpt
Use text placed before the tag as an excerpt for the post.
excerpt:
value in the front-matter, if specified, will take precedent.
Examples:
1 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. |