npm install htmlsbash
$ npm install htmls
`
Example
`livescript
doctype \html
html {lang: \en} ->
head ->
meta charset: \utf8
title @title
meta description: "A silly experiment in templating"
link rel: \stylesheet href: \htmls.css
script {type: "text/javascript"} """
if (javascript === "stinks") {
console.log("You should use LiveScript instead!");
}
"""
body ->
header ->
h1 "HTMLS - HyperText Markup LiveScript!"
main ->
if @using-htmls
p "I see that you are using HTMLS. You must be very brave."
else
p "Maybe you have made a sensible decision after all?"
footer ->
$ "HTMLS, a silly experiment by "
a {href: "https://github.com/Daiz-/"} "Daiz"
`
Given {title: "HTMLS", usingHtmls: true} as input, this compiles to:
`html
HTMLS
HTMLS - HyperText Markup LiveScript!
I see that you are using HTMLS. You must be very brave.
`
Usage
Usage of HTMLS is quite straightforward. You load the module, you call it with a template string and it spits out a function that you can then use to render said template with any given data. Like so:
`javascript
// JavaScript
var htmls = require('htmls');
var templateText = 'p "Hello, #@!"';
var templateFunc = htmls(templateCode);
var html = templateFunc("John Smith"); // Hello, John Smith!
`
`livescript
LiveScript
require! \htmls
template-text = 'p "Hello, #@!"'
template-func = htmls template-text
html = template-func "John Smith" # Hello, John Smith!
`
Writing Templates
- You can only use valid HTML5 element names.
- It's probably a good idea not to use HTML5 element names as variable names in your templates. Something will likely break.
- Regular LiveScript may or may play nice inside your templates. Everything should be fine if you stick to stuff like for loops and ifs though, which should be more than enough for basic templating purposes, right?
- Arguments are accessed via this or @ for short.
- If you want plain text output inside an element, use the $` function as seen in the example above.