1.0.5 • Published 8 years ago

includefile-loader v1.0.5

Weekly downloads
1
License
ISC
Repository
github
Last release
8 years ago

includefile-loader

include .js .css .html ...

安装

Install

npm install --save-dev includefile-loader

注意事项 》不要相互嵌套《 否则有不好的结果

案例

|include
--|a.js
--|b.js
--|base.html
--|body.html
--|footer.html
--|header.html
--|style.css
|text.html

text.html

<include src="include/base.html">
  <include src="./include/header.html"></include>
  <include src="./include/body.html"></include>
  <include src="./include/footer.html">
    <include src="./include/header.html"></include>
  </include>
</include>

base.html

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title></title>
    <include src="style.css" />
  </head>
  <body>
      <!-- {{ include }} -->
  </body>
</html>

懒! 结果就不贴了

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago