inline-languages.txt 411 B

123456789101112131415161718192021222324
  1. let foo = true;
  2. `hello ${foo ? `Mr ${name}` : 'there'}`;
  3. foo = false;
  4. html`<div id="foo">Hello world</div>`;
  5. html`<div id="foo">Hello times ${10} <span id="bar">world</span></div>`;
  6. html`
  7. <ul id="list">
  8. ${repeat(['a', 'b', 'c'], (v) => {
  9. return html`<li class="item">${v}</li>`;
  10. }}
  11. </ul>
  12. `;
  13. css`
  14. body {
  15. color: red;
  16. }
  17. `;
  18. // Ensure that we're back in JavaScript mode.
  19. var foo = 10;