Remove trailing whitespace
This commit is contained in:
parent
c40272cebd
commit
7db9397a9d
|
@ -14,4 +14,3 @@ Benchmark.ips do |x|
|
|||
x.report('.map.flatten with no nested arrays') { enum.map { |i| do_thing(i) }.flatten(1) }
|
||||
x.report('.flat_map with no nested arrays') { enum.flat_map { |i| do_thing(i) } }
|
||||
end
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ require 'erb'
|
|||
module Jekyll
|
||||
module Commands
|
||||
class New < Command
|
||||
class << self
|
||||
class << self
|
||||
def init_with_program(prog)
|
||||
prog.command(:new) do |c|
|
||||
c.syntax 'new PATH'
|
||||
|
@ -11,7 +11,7 @@ module Jekyll
|
|||
|
||||
c.option 'force', '--force', 'Force creation even if PATH already exists'
|
||||
c.option 'blank', '--blank', 'Creates scaffolding but with empty files'
|
||||
|
||||
|
||||
c.action do |args, options|
|
||||
Jekyll::Commands::New.process(args, options)
|
||||
end
|
||||
|
@ -76,7 +76,7 @@ module Jekyll
|
|||
def scaffold_path
|
||||
"_posts/0000-00-00-welcome-to-jekyll.markdown.erb"
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -27,12 +27,12 @@ $ jekyll build --watch
|
|||
<p>
|
||||
The contents of <code><destination></code> are automatically
|
||||
cleaned, by default, when the site is built. Files or folders that are not
|
||||
created by your site will be removed. Files and folders you wish to retain
|
||||
in <code><destination></code> may be specified within the <code><keep_files></code>
|
||||
created by your site will be removed. Files and folders you wish to retain
|
||||
in <code><destination></code> may be specified within the <code><keep_files></code>
|
||||
configuration directive.
|
||||
</p>
|
||||
<p>
|
||||
Do not use an important location for <code><destination></code>;
|
||||
Do not use an important location for <code><destination></code>;
|
||||
instead, use it as a staging area and copy files from there to your web server.
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
@ -15,5 +15,3 @@ greatest code a spin without having to clone a repository from git.
|
|||
Please take this prerelease for a spin and [let us
|
||||
know](https://github.com/jekyll/jekyll/issues/new) if you run into any
|
||||
issues!
|
||||
|
||||
|
||||
|
|
|
@ -16,5 +16,3 @@ keep on writing without any problems.
|
|||
|
||||
As always, you can find the full list of fixes in this release in the
|
||||
[change log](/docs/history/)!
|
||||
|
||||
|
||||
|
|
|
@ -4,4 +4,3 @@ test: good
|
|||
Real content starts here
|
||||
|
||||
Ðóññêèé òåêñò
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
layout: default
|
||||
title : Page name with non-alphabetic character
|
||||
title : Page name with non-alphabetic character
|
||||
---
|
||||
Line 1
|
||||
{{ page.title }}
|
||||
|
|
|
@ -5,4 +5,3 @@ category: publish_test
|
|||
---
|
||||
|
||||
This should be published.
|
||||
|
||||
|
|
|
@ -4,4 +4,3 @@ permalink: /deal.with.dots/
|
|||
---
|
||||
|
||||
Let's test if jekyll deals properly with dots.
|
||||
|
||||
|
|
Loading…
Reference in New Issue