UNPKG

html-test

Version:

Node.js library for testing HTML files on the fly and output errors in the console with Gulp.js compatibilities

38 lines (29 loc) 716 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <h3>Handlebars</h3> <template> <label for="{{test}}"></label> <input type="checkbox" id="{{test}}"> </template> <template> <label for="{{test}}"></label> <input type="checkbox" id="{{test}}"> </template> <h3>JS Literals</h3> <template> <label for="${test}"></label> <input type="checkbox" id="${test}"> </template> <template> <label for="${test}"></label> <input type="checkbox" id="${test}"> </template> </body> </html>