Escape apostrophes and make the gen plugin not spam
This commit is contained in:
parent
938073a660
commit
449256d470
2 changed files with 6 additions and 3 deletions
|
@ -329,13 +329,13 @@
|
|||
- artist: 'Cara Leigh'
|
||||
title: 'Part of Me'
|
||||
- artists: ['Tim Schaufert', 'Acacia']
|
||||
title: 'It's Going to Be Alright'
|
||||
title: 'It''s Going to Be Alright'
|
||||
- artists: ['Electro Light', 'AWR']
|
||||
title: 'Under A Minute'
|
||||
- artists: ['Approaching Nirvana', 'TryHardNinja']
|
||||
title: 'Revenge Remix'
|
||||
- artists: ['Electro-Light', 'AWR']
|
||||
title: 'Don't Allow'
|
||||
title: 'Don''t Allow'
|
||||
- artist: 'Sekai'
|
||||
title: 'Cherry'
|
||||
- artist: 'Faodail'
|
||||
|
|
|
@ -125,7 +125,10 @@ module Jekyll
|
|||
# Thus, if you use the `extension` feature of this plugin, you
|
||||
# need to generate the links by hand
|
||||
def datapage_url(input, dir)
|
||||
extension = Jekyll.configuration({})['page_gen-dirs'] ? '/' : '.html'
|
||||
if $config == nil
|
||||
$config = Jekyll.configuration({}) # Prevent spamming "Configuration file: ..." - NorbiPeti
|
||||
end
|
||||
extension = $config['page_gen-dirs'] ? '/' : '.html'
|
||||
"#{dir}/#{sanitize_filename(input)}#{extension}"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue