posthtml-modular-css

1.0.4 • Public • Published

POSTHTML MODULAR CSS

PostHTML Modular CSS is a PostHTML plugin.
The main idea is to help you make yor css modular.
With PostHTML it allows to include your css right in html.

Usage

var gulp = require('gulp');
var posthtml = require('gulp-posthtml');
 
gulp.task('posthtml', function () {
    var plugins = [
        require('posthtml-modular-css')({
            srcFolder: __dirname + '/webroot/',
            outputCSS: './dest/style.css'
        })
    ];
    var options = {};
 
    return gulp.src('./webroot/index.html')
        .pipe(posthtml(plugins, options))
        .pipe(gulp.dest('./dest'));
});

Example

/*box.html*/
<css src="css/box.css"></css>
<div class="box">
    <h1>title</h1>
    <p>Some text</p>
</div>
 
/*box.css*/
.box{
    background: #ccc;
    margin: 0 auto;
    width: 50%;
}
.box h1{
    text-transform: uppercase;
}
/*button.html*/
<css src="css/button.css"></css>
<a href="http://best-url-ever.com" class="button">button</a>
 
/*button.css*/
.button{
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 200px;
}

all included css files will be compiled to external one:

.box{
    background: #ccc;
    margin: 0 auto;
    width: 50%;
}
.box h1{
    text-transform: uppercase;
}
.button{
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 200px;
}

You just keep your css in one place with your html. From now on ther is no need to make separate file with css imports. If you delete your html file no extra css will be generated.

/posthtml-modular-css/

    Package Sidebar

    Install

    npm i posthtml-modular-css

    Weekly Downloads

    0

    Version

    1.0.4

    License

    MIT

    Last publish

    Collaborators

    • admdh