includes.html 275 B

1234567891011121314151617
  1. <p>bar</p>
  2. <body>
  3. <p>:)</p><script>
  4. console.log("foo\nbar")
  5. </script>
  6. <script type="text/javascript">
  7. var STRING_SUBSTITUTIONS = { // table of character substitutions
  8. '\t': '\\t',
  9. '\r': '\\r',
  10. '\n': '\\n',
  11. '"' : '\\"',
  12. '\\': '\\\\'
  13. };
  14. </script>
  15. </body>