Replace yoursite.com by example.com

This commit is contained in:
Anatol Broder 2013-08-23 22:59:10 +02:00
parent 6842148389
commit 839f231027
2 changed files with 10 additions and 7 deletions

View File

@ -70,6 +70,9 @@ Jekyll's repo on GitHub.com.
All documentation pull requests should be directed at `master`. Pull All documentation pull requests should be directed at `master`. Pull
requests directed at another branch will not be accepted. requests directed at another branch will not be accepted.
Use the domain `example.com` as an example in order to comply with the
[RFC 2606](http://tools.ietf.org/html/rfc2606).
The [Jekyll wiki](https://github.com/mojombo/jekyll/wiki) on GitHub The [Jekyll wiki](https://github.com/mojombo/jekyll/wiki) on GitHub
can be freely updated without a pull request as all GitHub users have access. can be freely updated without a pull request as all GitHub users have access.

View File

@ -53,9 +53,9 @@ and associated URLs might look like:
|-- _layouts/ |-- _layouts/
|-- _posts/ |-- _posts/
|-- _site/ |-- _site/
|-- about.html # => http://yoursite.com/about.html |-- about.html # => http://example.com/about.html
|-- index.html # => http://yoursite.com/ |-- index.html # => http://example.com/
└── contact.html # => http://yoursite.com/contact.html └── contact.html # => http://example.com/contact.html
{% endhighlight %} {% endhighlight %}
### Named folders containing index HTML files ### Named folders containing index HTML files
@ -76,10 +76,10 @@ look like:
├── _posts/ ├── _posts/
├── _site/ ├── _site/
├── about/ ├── about/
| └── index.html # => http://yoursite.com/about/ | └── index.html # => http://example.com/about/
├── contact/ ├── contact/
| └── index.html # => http://yoursite.com/contact/ | └── index.html # => http://example.com/contact/
└── index.html # => http://yoursite.com/ └── index.html # => http://example.com/
{% endhighlight %} {% endhighlight %}
This approach may not suit everyone, but for people who like clean URLs its This approach may not suit everyone, but for people who like clean URLs its