0.0.10 • Published 10 years ago

gulp-inline-image-path v0.0.10

Weekly downloads
6
License
MIT
Repository
github
Last release
10 years ago

Convert and replace src attrs within your data.

Example

gulpfile.js
var gulp = require('gulp');
var inlineImagePath = require('gulp-inline-image-path');

gulp.task('default', function () {
	gulp.src('index.html')
		...
		.pipe(inlineImagePath({path:"build/images"}))
		...
});
index.html // Before...
<html>
	<head>
	</head>
	<body>
		<img src="images/sample.png" />
...
path/index.html // ...after:
<html>
	<head>
	</head>
	<body>
		<img src="build/images/sample.png">

...

License

MIT © catindev

0.0.10

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago