thymeleafjs icon indicating copy to clipboard operation
thymeleafjs copied to clipboard

the element position confused after processed with thymeleafjs

Open paopaolee opened this issue 9 months ago • 0 comments

bug

const thymeleaf = require("thymeleaf");
const fs = require("fs");
const json = JSON.parse(fs.readFileSync("./demo.json", "utf8"));
const templateEngine = new thymeleaf.TemplateEngine(
  thymeleaf.STANDARD_CONFIGURATION
);
templateEngine
  .process(fs.readFileSync("./demo2.html", "utf8"), json)
  .then((result) => {
    console.log(result);
  })

@ultraq

paopaolee avatar Apr 27 '24 13:04 paopaolee