Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/reptar/reptar-excerpt


https://github.com/reptar/reptar-excerpt

Last synced: 1 day ago
JSON representation

Awesome Lists containing this project

README

        

# reptar-excerpt

A Reptar plugin for creating a post excerpt.

### Installation

Add to your array of `middlewares`:

```
const reptarExcerpt = require('reptar-excerpt');

module.exports = {
middlewares: [
reptarExcerpt({
// This option lets you either use html enhanced excerpts
// (meaning links, boldness, italicization, and so on will be there) by
// setting the value to `false`. You can use plain text in your excerpt
// by changing the value to `true`.
textOnly: false,

// This option can limit your excerpt length to your specified amount
// of characters. Use the value `false` to disable it or a number value
// such as `250` to set a max limit.
charLimit: false,
})
],
};
```