A plugin for hexo. If post has no description set, will auto use excerpt as description.
npm install hexo-description --save
Workflow:
- Origin post
---
title: Example post
---
## excerpt
- list1
- list2
<!-- more -->
content
- Origin excerpt
## excerpt
- list1
- list2
- Rendered excerpt
<h2>excerpt</h2>
<li>list1</li>
<li>list2</li>
- Finally we set pure excerpt text to description
excerptlist1list2