Skip to content

Commit c322bdd

Browse files
committed
chore: polish README
1 parent 21b0e7c commit c322bdd

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,10 @@ This section describes the best practices about what and how needs to be done to
7272
bundle exec jekyll serve
7373
```
7474
1. Open the documentation site on the server address which is written in the terminal: `http://0.0.0.0:4000/`. If you can't open the URL, replace the `0.0.0.0` with `localhost`: `http://localhost:4000`. For example, for the WPF documentation, this will be `http://0.0.0.0:4000/devtools/wpf/`.
75-
7675
1. To change the host or port, pass the `--host` or `--port` arguments to the command above as an addition, for example:
76+
```bash
77+
bundle exec jekyll serve --host=0.0.0.0 --port=1234
78+
```
7779
7880
### Update Build Scripts
7981
@@ -83,12 +85,16 @@ This section describes the best practices about what and how needs to be done to
8385
8486
## Troubleshooting
8587
88+
### Cannot Install github-markdown gem
89+
90+
Update bundler. See [Prerequisites](#prerequisites)
91+
8692
### Get More Detailed Error Message
8793
8894
To get more information and a full stacktrace of the error, add `--trace` after your jekyll command. For example:
89-
```bash
90-
bundle exec jekyll build --trace
91-
```
95+
```bash
96+
bundle exec jekyll build --trace
97+
```
9298
9399
### Ctrl+C Does Not Work
94100

0 commit comments

Comments
 (0)