Преглед изворни кода

Updated the jst test.

dev-tmpl
Bryan Miller пре 5 година
родитељ
комит
8a4da0cf9a
1 измењених фајлова са 9 додато и 2 уклоњено
  1. +9
    -2
      jst/test.js

+ 9
- 2
jst/test.js Прегледај датотеку

@@ -1,7 +1,7 @@

var T = require("./jst.js");

console.log(T.html(
var template = T.html(
T.head(
T.title("This is a Test")
),
@@ -14,4 +14,11 @@ console.log(T.html(
, {"class":"red green blue"}),
T.a("LINK", {href:"www.google.com"})
)
).toString());
);


console.log("Normal toString():\n------------------------------");
console.log(template.toString());

console.log("\n\nPretty String:\n-------------------------------");
console.log(template.toPrettyString());

Loading…
Откажи
Сачувај