What is an HTML preprocessor and are you using it?

Technology CommunityCategory: HTML5What is an HTML preprocessor and are you using it?
VietMX Staff asked 3 years ago

HTML Preprocessor helps us to write HTML code faster with less code.

Some Preprocessors are:

  • Pug
  • Haml

Exampleindex.jade

html
  head
    title= HelloWorld
  body
    h1 Using Jade to create HelloWorld web page

Compiled fileindex.html

<!DOCTYPE html>
<html>
  <head>
    <title>HelloWorld</title>
  <body>
    <h1>Using Jade to create HelloWorld web page</h1>
  </body>
</html>