A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

il y a 5 ans
il y a 5 ans
il y a 5 ans
il y a 5 ans
123456789101112131415161718192021222324
  1. var T = require("./jst.js");
  2. var template = 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. , {"class":"red green blue"}),
  13. T.a("LINK", {href:"www.google.com"})
  14. )
  15. );
  16. console.log("Normal toString():\n------------------------------");
  17. console.log(template.toString());
  18. console.log("\n\nPretty String:\n-------------------------------");
  19. console.log(template.toPrettyString());