HTML template literals

html`
<p>
	Foo.
</p>`;

JS DOM

div.innerHTML = `<p></p>`;
div.outerHTML = `<p></p>`;

styled-jsx CSS template literals

css`a:hover { color: blue; }`;

styled-components CSS template literals

const Button = styled.button`
	color: blue;
	background: red;
`;

Markdown template literals

markdown`# My title`;

GraphQL template literals

gql`{ foo }`;
graphql`{ foo }`;