html`
<p>
	Foo.
</p>`;div.innerHTML = `<p></p>`;
div.outerHTML = `<p></p>`;css`a:hover { color: blue; }`;styled-components CSS template literalsconst Button = styled.button`
	color: blue;
	background: red;
`;markdown`# My title`;gql`{ foo }`;
graphql`{ foo }`;