HTML Preprocessor helps us to write HTML code faster with less code.
Some Preprocessors are:
Example: index.jade
!!! 5
html
head
title= HelloWorld
body
h1 Using Jade to create HelloWorld web page
Compiled file: index.html
<!DOCTYPE html>
<html>
<head>
<title>HelloWorld</title>
<body>
<h1>Using Jade to create HelloWorld web page</h1>
</body>
</html>
More information on Jade.