1.1.0 • Published 6 years ago

gitbook-plugin-easyseo v1.1.0

Weekly downloads
1
License
MIT
Repository
-
Last release
6 years ago

easyseo plugin for GitBook

Plugin for GitBook which enables user to customerize "description" and "keywords" of each page.

eg.

<meta name="description" content="...">
<meta name="keywords" content="...">

How to install it?

You can use install via NPM:

$ npm install gitbook-plugin-easyseo

And use it for your book with in the book.json:

{
  "plugins": ["easyseo"]
}

How to use it?

For "description", just put the code into fenced code block and tag it description key word like this:

A page, so simple

It will generate

in the respective html file, in <head> and </head> tag pair.

For "keywords", just put the code into fenced code block and tag it keywords key word like this:

keyword1,keyword2

It will generate

in the respective html file, in <head> and </head> tag pair.