diff options
Diffstat (limited to '_plugins/generate-favicon.rb')
-rw-r--r-- | _plugins/generate-favicon.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/_plugins/generate-favicon.rb b/_plugins/generate-favicon.rb new file mode 100644 index 0000000..11c038a --- /dev/null +++ b/_plugins/generate-favicon.rb @@ -0,0 +1,16 @@ +module Jekyll + class FaviconGenerator < Generator + safe true + priority :high + + SIZE = 420 + + def generate(site) + svg = 'static/favicon.svg' + png = 'static/favicon.png' + unless File.exist? png then + puts `inkscape -o #{png} -w #{SIZE} -h #{SIZE} #{svg}` + end + end + end +end |