Skip to content

dyuliu/gulp-html-replace-dyu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

I make a slight change on the original plugin "https://github.com/VFK/gulp-html-replace.git".

  • remove the two unnecessary blank lines used for padding.

Example


index.html

<!DOCTYPE html>
<html>
    <head>
    <!-- build:css -->
        content will be added here
    <!-- endbuild -->
    </head>

The outputs of the original plugin:

<!DOCTYPE html>
<html>
    <head>
    A blank line will be added here
    <!-- build:css -->
    <link rel="stylesheet" href="css/normalize.css">
    <link rel="stylesheet" href="css/main.css">
    <!-- endbuild -->
 	A blank line will be added here
    </head>

The outputs of the current version:

<!DOCTYPE html>
<html>
    <head>
    <!-- build:css -->
    <link rel="stylesheet" href="css/normalize.css">
    <link rel="stylesheet" href="css/main.css">
    <!-- endbuild -->
    </head>

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published