0.0.10 • Published 9 years ago

gulp-inline-image-path v0.0.10

Weekly downloads
6
License
MIT
Repository
github
Last release
9 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

9 years ago

0.0.8

9 years ago

0.0.7

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago