npm i -S electron-posthtml
Usage
This modules intercepts the file:// Protocol using Electrons Protocol API. All HTML files will automatically processed by PostHTML.
'use strict' import { app, BrowserWindow } from 'electron' import posthtml from 'electron-posthtml' // Use PostHTML posthtml([/* Plugins */]) app.on('ready', () => { const view = new BrowserWindow({ width: 800, height: 600 }) view.loadUrl(`file://${__dirname}/index.html`) })
Example
Maintainers
Contributing
See PostHTML Guidelines and contribution guide.