0.0.4 • Published 7 years ago
hexo-tag-link-card v0.0.4
Embed a link card on your Hexo article.

Installation
npm install hexo-tag-link-card --saveUsage
Use tags:
{% linkCard url title desc %}Example:
{% linkCard https://blog.mayuko.cn Title Desc %}Then, it generates HTML:
<a class="link-card" href="https://blog.mayuko.cn/" target="_blank">
<div class="link-card__content">
<h1>Title</h1>
<p>Desc</p>
</div>
</a>Notice: Make sure there are no SPACES in Title or Desc.
Options
- className: You can customize the class name. (Default:
link-card & link-card__content)
By modifying the _config.yml file under the Hexo root directory.
linkCard:
className: link-cardStyle
You can customize the style by modifying the class name.
Example:
License
MIT