erixtekila / gitbook-plugin-richquotes

Gitbook plugin : Transform annoted quotes to notes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Gitbook plugin : Transform annotated quotes to notes

For gitbook 0.4.2+

Annotated notes are an extension of markdown blockquotes. Supported annotations :

  • > **Info** Info
  • > **Note** Note
  • > **Tag** Tag
  • > **Comment** Comment
  • > **Hint** Hint
  • > **Success** Success
  • > **Warning** Warning
  • > **Caution** Caution
  • > **Danger** Danger
  • > **Quote** Quote

Preview of richquotes

Annotations are case-insensitive.

Installation

Add this plugin to your book.json:

{
	"plugins": ["richquotes"]
}

Then run gitbook install to download and install the plugin.

Override built-in annotations

You can add user defined or override built-in annotations in book.json file:

{
	"plugins": ["richquotes"],
	"pluginsConfig":
	{
		"richquotes":
		{
			"star": {
				"alert": "warning",
				"picto": "fa-star"
			}
		}
	}
}

Refer to Bootstrap doc for alert value (alert- prefix is not needed).

Refer to Font Awesome doc for picto value.

Disable default quote

By default richquote will show a quote annotation. You can disable this behaviour in book.json file:

{
	"plugins": ["richquotes"],
	"pluginsConfig":
	{
		"richquotes":
		{
			"default": false
		}
	}
}

About

Gitbook plugin : Transform annoted quotes to notes

License:Apache License 2.0


Languages

Language:JavaScript 68.1%Language:CSS 31.9%