Clean up spurious trailing whitespace, and extra/missing newlines at EOF.

This commit is contained in:
Jon Frisby 2013-04-10 09:53:49 -07:00
parent 21cd6de44a
commit 0419b05143
33 changed files with 51 additions and 59 deletions

View File

@ -39,9 +39,9 @@ blog_index_sidebar: blog_index_default.html
page_sidebar: page_default.html
post_sidebar: post_default.html
recent_posts: 5 # Posts in the sidebar Recent Posts section
recent_posts: 5 # Posts in the sidebar Recent Posts section
excerpt_link: "Read on →" # "Continue reading" link text at the bottom of excerpted articles
excerpt_in_feed: false # Truncate excerpted articles in the atom feed
excerpt_in_feed: false # Truncate excerpted articles in the atom feed
permalink_label: "Permalink"
permalink_label_feed: "★ Permalink"
linklog_marker: "→"

View File

@ -98,4 +98,3 @@ $(document).ready(function() {
octopress.addMobileNav();
octopress.addSidebarToggler();
});

View File

@ -189,4 +189,3 @@ body.sidebar-footer {
ul, ol { margin-left: 0; }
}
}

View File

@ -134,4 +134,3 @@ body > nav {
a[rel=subscribe-rss]{ @include mask-subscription-nav('rss.png'); }
a[rel=subscribe-email]{ @include mask-subscription-nav('email.png'); }
}

View File

@ -232,4 +232,3 @@ pre, figure .highlight {
&::-webkit-scrollbar { height: .5em; background: $solar-scroll-bg; }
&::-webkit-scrollbar-thumb:horizontal { background: $solar-scroll-thumb; -webkit-border-radius: 4px; border-radius: 4px }
}

View File

@ -3,4 +3,3 @@
Imported. Load order is alphabetical and styles can be overriden in
custom/_style.scss which is loaded after all plugin stylesheets.
*/

View File

@ -23,7 +23,7 @@
{% endif %}
{% if site.facebook_like %}
{% if site.respectfully_social %}
<a title="Share on Facebook" class="facebook-share" href="http://www.facebook.com/sharer.php?u={{site.url}}{{page.url}}" target="_blank">Share</a>
<a title="Share on Facebook" class="facebook-share" href="http://www.facebook.com/sharer.php?u={{site.url}}{{page.url}}" target="_blank">Share</a>
{% else %}
{% if post.title %}
<div class="fb-like" data-href="{{ site.url }}{{ post.url }}" data-send="true" data-width="450" data-show-faces="false"></div>

View File

@ -22,4 +22,3 @@ layout: nil
</entry>
{% endfor %}
</feed>

View File

@ -28,4 +28,3 @@ layout: default
{% endif %}
</aside>
{% endunless %}

View File

@ -100,6 +100,7 @@ module Octopress
configs.to_symbol_keys
end
# Static: Writes configuration files necessary for generation of the Jekyll site
#
# Returns a Hash of the items which were written to the Jekyll configuration file

View File

@ -66,4 +66,3 @@ module Octopress
end
end
end

View File

@ -41,4 +41,3 @@ def config_tag(config, key, tag=nil, classname=nil)
end
Liquid::Template.register_tag('config_tag', ConfigTag)