split-html-loader
split-html-loader
is a webpack loader that allows conditional compilation of HTML via comment 'directives'. It's essentially a very minimalistic templating language designed specifically to 'feel' like natural HTML and to interoperate fully with other templating engines and build tools. It goes along with our split-css-loader.
For example, you can have split styling for a "desktop" and "xbox" build:
Hello World <!-- By default, comments adjust the visibility of the following tag --><!-- platform: desktop -->You're on our desktop build!<!-- platform: not-mobile -->You're not on our mobile build! <!-- We also support "block" tags --><!-- start platform: mobile --> This is only on mobile This is stillonly on mobile<!-- end platform: mobile -->
The result of building the above targeting the mobile
platform would be:
Hello World <!-- By default, comments adjust the visibility of the following tag --><!-- platform: desktop --><!-- 2 nodes snipped by split-html --><!-- platform: not-mobile --><!-- 2 nodes snipped by split-html --> <!-- We also support "block" tags --><!-- start platform: mobile --> This is only on mobile This is stillonly on mobile<!-- end platform: mobile -->
Usage
Your webpack.config.js
might look something like this:
moduleexports = // ... module: preLoaders: test: /\.html$/ loader: 'split-html' query: targets: platform: 'mobile' loaders: test: /\.html$/ loader: 'html' ;
The loader can take any number of key/value pairs in targets
, with each key representing what you want to compile against, and each value representing what you want that key to be. In this case, we specified that we only want to compile <!-- platform: mobile -->
and want everything else to be stripped out.
Programmatic API
You can also use this module natively, in Node. The options are the same, you simply pass in a HTML string you want to parse:
const split = ; fs;