소스 검색

Updated test.

dev-tmpl
Bryan Miller 5 년 전
부모
커밋
cbb9394953
1개의 변경된 파일9개의 추가작업 그리고 9개의 파일을 삭제
  1. +9
    -9
      jst/test.js

+ 9
- 9
jst/test.js 파일 보기

@@ -1,17 +1,17 @@

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

console.log(T.html([
T.head([
console.log(T.html(
T.head(
T.title("This is a Test")
]),
T.body([
),
T.body(
T.h1("Hello World!"),
T.p([
T.p(
"This is a bit of text ",
T.i("with italics!"),
" so go figure!"
], "red green blue"),
T.a("LINK", null, {href:"www.google.com"})
])
]).toString());
, {"class":"red green blue"}),
T.a("LINK", {href:"www.google.com"})
)
).toString());

Loading…
취소
저장