A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

1234567891011121314151617
  1. var T = require("./jst.js");
  2. console.log(T.html([
  3. T.head([
  4. T.title("This is a Test")
  5. ]),
  6. T.body([
  7. T.h1("Hello World!"),
  8. T.p([
  9. "This is a bit of text ",
  10. T.i("with italics!"),
  11. " so go figure!"
  12. ], "red green blue"),
  13. T.a("LINK", null, {href:"www.google.com"})
  14. ])
  15. ]).toString());