Merge pull request #5168 from jekyll/change-quickstart
Merge pull request 5168
This commit is contained in:
commit
896a502129
|
@ -10,7 +10,8 @@ For the impatient, here's how to get a boilerplate Jekyll site up and running.
|
|||
~ $ gem install jekyll
|
||||
~ $ jekyll new myblog
|
||||
~ $ cd myblog
|
||||
~/myblog $ jekyll serve
|
||||
~/myblog $ bundle install
|
||||
~/myblog $ bundle exec jekyll serve
|
||||
# => Now browse to http://localhost:4000
|
||||
{% endhighlight %}
|
||||
|
||||
|
|
|
@ -57,10 +57,15 @@ overview: true
|
|||
<span class="prompt">$</span>
|
||||
<span class="command">cd my-awesome-site</span>
|
||||
</p>
|
||||
<p class="line">
|
||||
<span class="path">~</span>
|
||||
<span class="prompt">$</span>
|
||||
<span class="command">bundle install</span>
|
||||
</p>
|
||||
<p class="line">
|
||||
<span class="path">~/my-awesome-site</span>
|
||||
<span class="prompt">$</span>
|
||||
<span class="command">jekyll serve</span>
|
||||
<span class="command">bundle exec jekyll serve</span>
|
||||
</p>
|
||||
<p class="line">
|
||||
<span class="output"># => Now browse to http://localhost:4000</span>
|
||||
|
|
Loading…
Reference in New Issue