todvora / gitbook-plugin-image-captions

Image captions plugin for GitBook
Apache License 2.0
44 stars 18 forks source link

GitBook Image Captions Plugin

Build Status Dependencies Status DevDependencies Status npm version

Add nice generated captions to your book images. This plugin converts alt or title attributes of your images into the captions. Works on both the GitBook website and your own generated book (pdf, mobi).

rendered page

Online demo

http://tdvorak.gitbooks.io/test-book/content/phetchaburi.html

Installation

In your book.json add the plugin:

{
    "plugins": [
        "image-captions"
    ]
}

If you're building your book locally, download and prepare plugins by simply running gitbook install.

Configuration

The plugin provides reasonable defaults and configuration is not needed. However, there are several config values you can use to adapt captions to your needs:

Caption text

If you want to configure the caption text, you can provide your own template in the form:

  "pluginsConfig": {
      "image-captions": {
          "caption": "Image - _CAPTION_"
      }
  }

The keyword _CAPTION_ will be automatically replaced by the title or alt of your image (the plugin uses first title, if not found, then alt attribute).

Page level and image number

Keywords _PAGE_LEVEL_, _PAGE_IMAGE_NUMBER_ and _BOOK_IMAGE_NUMBER_ are available.

  "pluginsConfig": {
      "image-captions": {
          "caption": "Image _PAGE_LEVEL_._PAGE_IMAGE_NUMBER_ - _CAPTION_"
      }
  }

Available variables in the caption text:

Text alignment

The image caption is by default aligned to the center. You can override this setting by providing a config property align with one of the values:

This will align the caption to the left:

  "pluginsConfig": {
      "image-captions": {
          "align": "left"
      }
  }

Image specific captions

You can set up caption template for a specific image by image level. Level is constructed from page level and image order so that on subpage 1.2 second image level is: 1.2.2. That can be used as an index on configuration:

  "pluginsConfig": {
    "image-captions": {
      "images": {
        "1.2.2": {
          "caption": "This is a special image: _CAPTION_"
        }
      }
    }
  }

Additional image attributes

Similarly, you can specify image tag attributes globally or at specific image levels:

  "pluginsConfig": {
    "image-captions": {
      "attributes": { "width": "300" },
      "images": {
        "1.2.2": {
          "attributes": {
            "width": "400"
          }
        }
      }
    }
  }

Skip selected images

You can specify which images should be skipped and not enriched by a figure caption:

  "pluginsConfig": {
    "image-captions": {
      "images": {
        "1.2.2": {
          "skip": true
        }
      }
    }
  }

Image list

As of version 0.3.0, image list is available from book variables. You need to define a variable name:

  "pluginsConfig": {
    "image-captions": {
      "variable_name": "pictures"
    }
  }

This will automatic add image container to the book variables, so that they are present on any page:

    "variables": {
        "pictures": []
    }

Note: it is not necessary to add pictures entry on variables. This is just to clarify usage of the image list. By defining variable_name, you can make sure not to overwrite any previous book variable.

All images are available on any page. Say you have a pictures.md, you can do:

  # Pictures

  {% for picture in book.pictures %}
    1. [{{ picture.list_caption }}]({{ picture.backlink }})
  {% endfor %}

Image properties available in addition to list_caption and backlink are:

You can set a different caption (label) for each image on a list. This makes it possible to separate page image caption at the actual page from the label of the image on a picture list:

  "pluginsConfig": {
    "image-captions": {
      "variable_name": "pictures",
      "list_caption": "List image _BOOK_IMAGE_NUMBER_: _CAPTION_"
    }
  }

You can set a specific image caption / label as well:

  "pluginsConfig": {
    "image-captions": {
      "variable_name": "pictures",
      "images": {
        "1.2.2": {
          "list_caption": "Special list image _PAGE_LEVEL_._PAGE_IMAGE_NUMBER_: _CAPTION_"
        }
      }
    }
  }

CSS Styles

This plugin generates simple figure around your images:

<figure>
    <img src="https://github.com/todvora/gitbook-plugin-image-captions/raw/master/./images/phetchaburi.jpg" alt="Phra Nakhon Khiri, Phetchaburi">
    <figcaption>Image - Phra Nakhon Khiri, Phetchaburi</figcaption>
</figure>

You can then customize CSS styles of the figure and figcaption. By default, this definition is included in the plugin:

figure {
    margin: 1.5em 0px;
    padding:10px 0;
}

figcaption {
    clear: left;
    margin: 0.75em 0px;
    text-align: center;
    font-style: italic;
    line-height: 1.5em;
}

You can attach your own styles by following the guide on help.gitbook.com.

First, you have to create your own css file - for example website.css. Then add your definitions of figure and caption. You can change the text align, colors, borders and so one. Last step is to attach your css style to the book. Open the book.json config file and modify it to look similar to this:

{
  "plugins": [
    "image-captions"
  ],
  "pluginsConfig": {},
  "styles": {
    "website": "website.css"
  }
}

Different styles can be attached for web and books, so you can style the captions differently for every medium:

"styles": {
  "website": "website.css",
  "ebook": "ebook.css",
  "pdf":  "pdf.css",
  "mobi": "ebook.css",
  "epub": "ebook.css"
}

The same should apply for the online book editor on gitbook.com.

Configuration of styles in book.json

Under the hood

This plugin attaches itself to the "page" event of GitBook generate task. It receives rendered HTML page of the chapter. Then the plugin goes through the HTML code of the page, searching for images. If there is any image detected, containing also alt or title atribute, the plugin replaces image occurences with the figure tag, including original image and additional figcaption tag with the text read from image attributes.

Tests

Important part of this plugin is the test suite. You can run the test with command:

npm test

The test suite includes JSHint validation of the plugin and test suite itself. Then the Mocha integration tests are executed, validating expected plugin bahavior. Integration tests use gitbook-tester.

The tests are executed with every pushed commit on the Travis-CI server.

Based on

This plugin is based on the example plugin from GitbookIO/plugin.

Changes

0.4.0

Thanks @piranna and @SamyPesse for support.

0.3.3 & 0.3.4

Thanks @ghuntley and @aschempp for reports and verification.

0.3.2

Thanks @klauern for #5 and @markomanninen for #6

0.3.1

Thanks @michaellwest for reporting this issue!

0.3.0

Thanks @markomanninen for all new features!

0.2.0

Thanks @aschempp for PR #1 and new test cases!

0.1.0

0.0.2 - 0.0.6