Giter Club home page Giter Club logo

metalsmith-gh-comments's Introduction

metalsmith-gh-comments

npm

Metalsmith plugin to automatically open a Github issue as blog comments for every articles of your blog. It also creates a gh-comments.json file to keep track of created issues. Uses gh-issues-for-comments under the hood.

Notes: a property issueId is added to each article for templates usage.

Install

npm install metalsmith-gh-comments --save

Usage

CLI usage

Install via npm and then add the metalsmith-gh-comments key to your metalsmith.json plugins with any gh-issues-for-comments option you want.

For more powerful options see #javascript-usage.

{
  "plugins": {
    "metalsmith-gh-comments": {
      "username": "jiayihu",
      "repo": "blog",
      "token": "123GithubOAuthToken",
    }
  }
}

Javascript usage

It's recommended to configure this plugin along with metalsmith-filepath, in order to use articles filepaths as unique properties since they don't have an id. The title could be used as well but it's more likely to change.

const filepath = require('metalsmith-filepath');
const githubComments = require('metalsmith-gh-comments');

.use(filepath({ absolute: false }))
.use(
  githubComments({
    // Don't include 'About' article
    filter: article => article.title !== 'About', 

    // gh-issues-for-comments options
    idProperty: 'link', // property added by 'metalsmith-filepath'
    username: 'jiayihu',
    repo: 'blog',
    token: '123GithubOAuthToken'
  })
)

Options

The following options can be provided:

  • filter

    Type: (article) => boolean

    Filter which articles must have an issue for comments

Any other options will be passed to gh-issues-for-comments. Check the package to see all available options.

metalsmith-gh-comments's People

Contributors

jiayihu avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.