This is a plugin for automatically adding author and timestamp to each gitbook article, including creator and last modified user from git commits
README.md file
Be sure to commit this file to git repository
# Title of the Article content<h1>Title of the Article</h1> <p>content</p> <div class="git-author-container"> <div class="modified">Last modified by someone 2016-06-06 06:06:06</div> <div class="created">Created by someone 2016-06-06 06:06:06</div> </div>npm i -D gitbook-plugin-git-author{ "plugins": ["git-author"] "pluginsConfig": { "git-author":{ "modifyTpl": "Last modified by {user} {timeStamp}", "createTpl": "Created by {user} {timeStamp}", "timeStampFormat": "YYYY-MM-DD HH:mm:ss" } } }"createTpl": false book.json
{ "styles": { "website": "./website.css" } }website.css
.git-author-container { font-size: 85%; }