UNPKG

code-example

Version:
16 lines (12 loc) 270 B
const code = `<% function hello(who) { return "Hello " + who; } %> This is an example of EJS (embedded javascript) <p>The program says <%= hello("world") %>.</p> <script> alert("And here is some normal JS code"); // also colored </script> `; export default code;