feat(site): update demo page to have no semicolon server:setup script
This commit is contained in:
parent
d50b67f3f4
commit
43fa3dfb12
2 changed files with 4 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
||||||
# someday let's think about formatting html
|
# someday let's think about formatting html
|
||||||
**/*.html
|
# **/*.html
|
||||||
|
|
||||||
**/*.md
|
**/*.md
|
||||||
**/*.css
|
**/*.css
|
||||||
|
|
|
@ -9,10 +9,10 @@
|
||||||
let greeting = {
|
let greeting = {
|
||||||
url: 'https://www.google.com',
|
url: 'https://www.google.com',
|
||||||
message: "hello"
|
message: "hello"
|
||||||
};
|
}
|
||||||
|
|
||||||
greeting.message = "nope";
|
greeting.message = "nope"
|
||||||
var count = sum(1, 247);
|
var count = sum(1, 247)
|
||||||
|
|
||||||
function sum(x, y) {
|
function sum(x, y) {
|
||||||
return x + y;
|
return x + y;
|
||||||
|
|
Loading…
Reference in a new issue