Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/clemsos/metalsmith-scan-images

A metalsmith plugin that scan all images in subfolders and add it to metadata.
https://github.com/clemsos/metalsmith-scan-images

Last synced: 2 months ago
JSON representation

A metalsmith plugin that scan all images in subfolders and add it to metadata.

Awesome Lists containing this project

README

        

# Metalsmith Scan Images

A metalsmith plugin to easily create image galleries.

This plugin will scan all images included in folders following a pattern (ex ```'content/projects/**/*.md'```) and add an array of paths called ```images``` to each post metadata.

Supported extensions : ```"jpg", "svg", "png", "gif", "JPG", "SVG", "PNG", "GIF"```

## Install

```sh
npm install --save metalsmith-scan-images
```

## API

```js
var Metalsmith = require('metalsmith');
var images = require("metalsmith-scan-images");

var metalsmith = new Metalsmith(__dirname)
.use(images( 'content/**/**/index.html' ))
```
## Use it

A basic example of template for an image gallery

```html



    {{#each images }}



  • {{/each}}


```