UNPKG

sodajs

Version:

Light weight but powerful template engine for JavaScript.

17 lines (14 loc) 299 B
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> </head> <body> <script src="../dist/soda.min.js"></script> <script> var tpl = '<div>Hello, {{count+1}}</div>' document.body.innerHTML = soda(tpl,{ count : 1 }) </script> </body> </html>