Taken from Hexo’s doc page. Also see tag-bootstrap.

Tag plugins are different from tags in posts. They’re ported from Octopress and can help you insert specific contents in posts quickly.

Block Quote

Inserts quotes with author, source and title in posts.

Alias: quote

{% blockquote [author[, source]] [link] [source_link_title] %}
content
{% endblockquote %}

Example

No arguments given. Only output plain blockquote

{% 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.
{% endblockquote %}

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

{% blockquote David Levithan, Wide Awake %}
Do not just seek happiness for yourself. Seek happiness for all. Through kindness. Through mercy.
{% endblockquote %}

Do not just seek happiness for yourself. Seek happiness for all. Through kindness. Through mercy.

David LevithanWide Awake

Quote from Twitter

{% blockquote @DevDocs https://twitter.com/devdocs/status/356095192085962752 %}
NEW: DevDocs now comes with syntax highlighting. http://devdocs.io
{% endblockquote %}

NEW: DevDocs now comes with syntax highlighting. http://devdocs.io

Quote from an article on the web

{% 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.
{% endblockquote %}

Every interaction is both precious and an opportunity to delight.

Code Block

Inserts code snippets in posts.

Alias: code

{% codeblock [title] [lang:language] [url] [link text] %}
code snippet
{% endcodeblock %}

Example

A normal code block

{% codeblock %}
alert(‘Hello World!’);
{% endcodeblock %}
1
alert('Hello World!');

Specify language

{% codeblock lang:objc %}
[rectangle setX: 10 y: 10 width: 20 height: 20];
{% endcodeblock %}
1
[rectangle setX: 10 y: 10 width: 20 height: 20];

Add caption to code block

{% codeblock Array.map %}
array.map(callback[, thisArg])
{% endcodeblock %}
Array.map
1
array.map(callback[, thisArg])

Add caption with an optional URL

{% codeblock .compact http://underscorejs.org/#compact Underscore.js %}
.compact([0, 1, false, 2, ‘’, 3]);
=> [1, 2, 3]
{% endcodeblock %}
_.compactUnderscore.js
1
2
_.compact([0, 1, false, 2, '', 3]);
=> [1, 2, 3]

Backtick Code Block

This plugin is same as code block, but in backtick style.

1
2
3
``` [language] [title] [url] [link text]
code snippet
```

Pull Quote

This plugin helps you insert a pull quote in posts.

{% pullquote [class] %}
content
{% endpullquote %}

jsFiddle

Embeds jsFiddle snippets in posts.

{% jsfiddle shorttag [tabs] [skin] [width] [height] %}

Gist

Embeds Gist snippets in posts.

{% gist gist_id [filename] %}

iframe

Embeds an iframe in posts.

{% iframe url [width] [height] %}

Image

Inserts an image in posts with specified size.

{% img [class names] /path/to/image [width] [height] [title text [alt text]] %}

Inserts a link with target="_blank" attribute.

{% link text url [external] [title] %}
"Visit Google"

Include Code

Inserts code snippets in source folder.

{% include_code [title] [lang:language] path/to/file %}

Youtube

Inserts a Youtube video in posts.

{% youtube video_id %}

Vimeo

Inserts a Vimeo video in posts.

{% vimeo video_id %}

Raw

If there’re some contents can’t be processed in posts, you can wrapped it with rawblock tag.

{% rawblock %}
content
{% endrawblock /%}

Comments