mirror of
https://github.com/Tyriar/vscode-theme-generator.git
synced 2025-12-06 17:15:43 -08:00
Add escape characters to language examples
This commit is contained in:
21
language-examples/html.html
Normal file
21
language-examples/html.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Page title</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>First-level header</h1>
|
||||
|
||||
<h2>Second-level header</h2>
|
||||
<ul>
|
||||
<li>list</li>
|
||||
<li>of</li>
|
||||
<li>bullets</li>
|
||||
</ul>
|
||||
|
||||
<h2>Another second-level header</h2>
|
||||
<p>
|
||||
This paragraph contains an escape—namely, the em dash.
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
||||
@@ -6,6 +6,7 @@ function func(param) {
|
||||
}
|
||||
var number = 0;
|
||||
var templateLiterals = `a ${text} b ${1 + 2} c`;
|
||||
var escapes = 'line 1\nline 2';
|
||||
return {
|
||||
"text": text,
|
||||
"boolean": false,
|
||||
|
||||
@@ -6,6 +6,7 @@ function func(param: string): object {
|
||||
}
|
||||
var number = 0;
|
||||
var templateLiterals = `a ${text} b ${1 + 2} c`;
|
||||
var escapes = 'line 1\nline 2';
|
||||
return {
|
||||
"text": text,
|
||||
"boolean": false,
|
||||
|
||||
Reference in New Issue
Block a user