1.2.1 • Published 7 years ago

hexo-filter-inline-assets v1.2.1

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

hexo-filter-inline-assets

npm npm Build Status NPM Dependencies Coverage Status npm.io

Hexo filter that inlines images, JS, and CSS in HTML

Installation

$ yarn add hexo-filter-inline-assets

Usage

The filter is enabled by default with the configuration:

inline_assets:
  enabled: true
  limit: 100000

Images

Any images in HTML are inlined if their file size is smaller than the limit defined in the configuration.

JS & CSS

To mark a JS or CSS file for inlining, just add ?__inline=true to the end of the file path:

<link rel="stylesheet" href="css/main.css?__inline=true">
<script src="myscript.js?__inline=true"></script>
1.2.1

7 years ago

1.2.0

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago