Replace yoursite.com by example.com
This commit is contained in:
parent
6842148389
commit
839f231027
|
@ -68,7 +68,10 @@ You can find the documentation for jekyllrb.com in the
|
||||||
Jekyll's repo on GitHub.com.
|
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.
|
||||||
|
|
|
@ -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 it’s
|
This approach may not suit everyone, but for people who like clean URLs it’s
|
||||||
|
|
Loading…
Reference in New Issue