![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
gulp-posthtml
Advanced tools
npm i -D gulp-posthtml
import { task, src, dest } from 'gulp'
import posthtml from 'gulp-posthtml'
task('html', () => {
return src('src/*.html')
.pipe(posthtml())
.pipe(dest('dest'))
})
Plugins
Name | Type | Default | Description |
---|---|---|---|
plugins | {Array} | [] | PostHTML Plugins |
Options
Name | Type | Default | Description |
---|---|---|---|
options | {Object} | {} | PostHTML Options |
gulpfile.js
import { task, src, dest } from 'gulp'
import tap from 'gulp-tap'
import rename from 'gulp-rename'
import posthtml from 'gulp-posthtml'
task('html', () => {
let path
const plugins = [ require('posthtml-include')({ root: path }) ]
const options = { parser: require('posthtml-sugarml')() }
return src('src/*.html')
.pipe(tap((file) => path = file.path))
.pipe(posthtml(plugins, options))
.pipe(rename({ ext: '.html' }))
.pipe(dest('dest'))
})
Config
Name | Type | Default | Description |
---|---|---|---|
plugins | {Array} | [] | PostHTML Plugins |
options | {Object} | {} | PostHTML Options |
gulpfile.js
import { task, src, dest } from 'gulp'
import rename from 'gulp-rename'
import posthtml from 'gulp-posthtml'
task('ssml', () => {
const config = (file) => ({
plugins: [ require('posthtml-include')({ root: file.dirname }) ],
options: { parser: require('posthtml-sugarml')() }
})
return src('src/*.sml')
.pipe(posthtml(config))
.pipe(rename({ ext: '.html' }))
.pipe(dest('dest'))
})
posthtml.config.js
Context
Name | Type | Default | Description |
---|---|---|---|
env | {String} | 'development' | process.env.NODE_ENV |
file | {Object} | dirname, basename, extname | File |
options | {Object} | {} | Options (Parser, Render, Plugin Options) |
posthtml.config.js
module.exports = ({ file, options, env }) => ({
parser: 'posthtml-sugarml'
plugins: {
'posthtml-include': { root: file.dirname },
'posthtm-expressions': { locals: options.locals }
'htmlnano': env === 'production' ? {} : false
}
})
gulpfile.js
import { task, src, dest } from 'gulp'
import rename from 'gulp-rename'
import posthtml from 'gulp-posthtml'
task('ssml', () => {
const ctx = { locals: { a: 'Hello World!'} }
return src('src/*.sml')
.pipe(posthtml(ctx))
.pipe(rename({ ext: '.html' }))
.pipe(dest('dest'))
})
Ivan Voischev |
Michael Ciniawsky |
FAQs
Gulp PostHTML Plugin
The npm package gulp-posthtml receives a total of 173 weekly downloads. As such, gulp-posthtml popularity was classified as not popular.
We found that gulp-posthtml demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.