New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

awoo-pretty

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

awoo-pretty

pretty links for awoo

latest
Source
npmnpm
Version
1.1.2
Version published
Maintainers
1
Created
Source

awoo-pretty

nice pretty links for awoo

npm version code style: standard

Installation

npm install awoo-pretty

Usage example

const awoo = require('awoo')
const plugin = require('awoo-pretty')

// enter our main function:
// the main function should be an async function so that
// it automatically returns a promise
awoo(async site => {
  // we use the plugin
  site.use(plugin)
  // ...and initiate the build process
  return site
})

Filters

By default, pretty operates on all HTML files (files that end with .html). This can be changed easily by using a custom filter. A filter is a function that takes a file and returns a boolean that describes whether that file should have pretty enabled or not. A custom filter can look like this:

function myCustomFilter (file, options, files) {
  return file.path.includes('my-dir/')
}

This filter only matches HTML files that are located in the my-dir directory.

To use the filter, just pass it into the plugin options:

awoo(async site => {
  site.use(pretty, {filter: myCustomFilter})
  return site
})

Maintainers

  • Olivia Hugger <olivia@fastmail.com>

License

MIT (see LICENSE document)

Keywords

awoo

FAQs

Package last updated on 16 Nov 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts