Merge pull request #1032 from pborreli/typos
Fixed typos, add missing <div> to site_template
This commit is contained in:
commit
b9a94123d6
|
@ -3,8 +3,8 @@
|
||||||
module Jekyll
|
module Jekyll
|
||||||
class Configuration < Hash
|
class Configuration < Hash
|
||||||
|
|
||||||
# Default options. Overriden by values in _config.yml.
|
# Default options. Overridden by values in _config.yml.
|
||||||
# Strings rather than symbols are used for compatability with YAML.
|
# Strings rather than symbols are used for compatibility with YAML.
|
||||||
DEFAULTS = {
|
DEFAULTS = {
|
||||||
'source' => Dir.pwd,
|
'source' => Dir.pwd,
|
||||||
'destination' => File.join(Dir.pwd, '_site'),
|
'destination' => File.join(Dir.pwd, '_site'),
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</div> <!-- /container -->
|
</div> <!-- /container -->
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -535,7 +535,7 @@ class TestPost < Test::Unit::TestCase
|
||||||
assert conv.kind_of? Jekyll::Converters::Markdown
|
assert conv.kind_of? Jekyll::Converters::Markdown
|
||||||
end
|
end
|
||||||
|
|
||||||
should "process .text as indentity under default configuration" do
|
should "process .text as identity under default configuration" do
|
||||||
post = setup_post '2011-04-12-text-extension.text'
|
post = setup_post '2011-04-12-text-extension.text'
|
||||||
conv = post.converter
|
conv = post.converter
|
||||||
assert conv.kind_of? Jekyll::Converters::Identity
|
assert conv.kind_of? Jekyll::Converters::Identity
|
||||||
|
|
Loading…
Reference in New Issue