hexo-multiauthors
v1.0.0
Published
A set of Author features for Hexo.
Readme
Multi authors support for Hexo
Description
Tested wit Hexo 3.x
This plugin adds support for multiple authors for articles. You can add authors to a post by adding an authorIds array to the frontmatter.
title: Sample post
date: 2014/01/10 12:00
tags: [hexo]
authorIds:
- ABC
- DEFAt this point, this plugin expects two files source/_authors/ABC.yml and source/_authors/DEF.yml to exist. In the author files you can add Author Metadata ie.:
name: Luke Skywalker
about: PilotThis plugin will create Author pages (/authors/authorId) when you run hexo generate - each page contains a paginated list of posts written by the Author. The generator expects a layout called authors, but will fall back to the index layout if it cannot be found.
