D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
mattborn
Full window
Github gist
Inline templates
<!doctype html> <html> <head> <title>Inline templates</title> <script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.4/lodash.min.js"></script> <style> body { font-size: 200%; margin: 10%; } code { background: #eee; } </style> </head> <body> <div id="render"></div> <p>This gist shows how to use an inline HTML <code><template></code> with <a href="https://lodash.com/docs/4.17.4#template">lodash</a> <code>_.template</code>.</p> <template id="template"> <h1>Hello {{ what }}!</h1> </template> <script src="scripts.js"></script> </body> </html>
https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.4/lodash.min.js