Fix quotes and snippet copy widget

This commit is contained in:
Dave Syer
2016-04-25 17:29:36 +01:00
parent f14c1c0297
commit 98c45951e9
2 changed files with 10 additions and 1 deletions

View File

@@ -3,6 +3,15 @@ safe: true
lsi: false
highlighter: rouge
markdown: kramdown
encoding: UTF-8
github: [metadata]
kramdown:
input: GFM
hard_wrap: false
smart_quotes: ["apos", "apos", "quot", "quot"]
gems:
- jekyll-coffeescript
- jekyll-paginate
### The following properties will change on a project-by-project basis

View File

@@ -8,7 +8,7 @@ $(document).ready(function() {
Spring.configureCopyButtons = function() {
if (ZeroClipboard.detectFlashSupport()) {
$(".highlight > pre").each(function(index) {
$("pre.highlight").each(function(index) {
Spring.buildCopyButton($(this), index);
}
);