Skip to content

Commit d458156

Browse files
committed
Fix some grammar / Indent code
1 parent 2646a00 commit d458156

File tree

1 file changed

+20
-18
lines changed

1 file changed

+20
-18
lines changed

README.md

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
node-webkit is an app runtime based on `Chromium` and `node.js`. You can
44
write native apps in HTML and Javascript with node-webkit. It also lets you
5-
to call Node.js modules directly from DOM and enables a new way of writing
5+
call Node.js modules directly from the DOM and enables a new way of writing
66
native applications with all Web technologies.
77

8-
It's created and developed in Intel Open Source Technology Center.
8+
It's created and developed in the Intel Open Source Technology Center.
99

1010
[Introduction to node-webkit (slides)](https://speakerdeck.com/u/zcbenz/p/node-webkit-app-runtime-based-on-chromium-and-node-dot-js).
1111

@@ -35,27 +35,27 @@ You may also be interested in [our demos repository](https://github.com/zcbenz/n
3535

3636
Create `index.html`:
3737

38-
````html
38+
```html
3939
<!DOCTYPE html>
4040
<html>
41-
<head>
42-
<title>Hello World!</title>
43-
</head>
44-
<body>
45-
<h1>Hello World!</h1>
46-
We are using node.js <script>document.write(process.version)</script>
47-
</body>
41+
<head>
42+
<title>Hello World!</title>
43+
</head>
44+
<body>
45+
<h1>Hello World!</h1>
46+
We are using node.js <script>document.write(process.version)</script>.
47+
</body>
4848
</html>
49-
````
49+
```
5050

5151
Create `package.json`:
5252

53-
````json
53+
```json
5454
{
5555
"name": "nw-demo",
5656
"main": "index.html"
5757
}
58-
````
58+
```
5959

6060
Compress `index.html` and `package.json` into a zip archive called `app.nw`:
6161

@@ -65,9 +65,11 @@ $ zip app.nw index.html package.json
6565

6666
This should create a structure like this:
6767

68-
app.nw
69-
|-- package.json
70-
`-- index.html
68+
```
69+
app.nw
70+
|-- package.json
71+
`-- index.html
72+
```
7173

7274
Download the prebuilt binary for your platform and use it to open the
7375
`app.nw` file:
@@ -90,8 +92,8 @@ And our [Wiki](https://github.com/rogerwang/node-webkit/wiki) for much more.
9092

9193
## Community
9294

93-
We use [node-webkit group](http://groups.google.com/group/node-webkit) as
94-
our mailing list, subscribe via [node-webkit+subscribe@googlegroups.com](mailto:node-webkit+subscribe@googlegroups.com).
95+
We use the [node-webkit group](http://groups.google.com/group/node-webkit) as
96+
our mailing list. Subscribe via [node-webkit+subscribe@googlegroups.com](mailto:node-webkit+subscribe@googlegroups.com).
9597

9698
## License
9799

0 commit comments

Comments
 (0)