No plugin needed for a xml feed
[blog.git] / _config.yml
1 name: "Ganneff's Little Blog"
2 url: https://blog.ganneff.de
3 description: Thoughts of a small and very unimportant Debian Developer
4 author:
5 name: Joerg Jaspert
6 email: joerg@ganneff.de
7 uri: https://blog.ganneff.de/
8
9 gems:
10 - jekyll-paginate
11 - jekyll-archives
12 - jekyll-sitemap
13
14 permalink: /:year/:month/:slug.html
15 paginate_path: "page/:num/"
16 paginate: 10
17
18
19 timezone: Europe/Berlin
20
21 highlighter: rouge
22
23 markdown: rdiscount
24 rdiscount:
25 extensions:
26 - autolink # greedily urlify links
27 - footnotes # footnotes
28 - smart # Typo fixup with SmartyPants
29
30 exclude: ['README.md', 'Gemfile.lock', 'Gemfile', 'Rakefile']
31
32 jekyll-archives:
33 enabled:
34 - year
35 - month
36 - categories
37 # - tags
38 layout: 'archive'
39 permalinks:
40 year: '/:year/'
41 month: '/:year/:month/'
42 category: '/category/:name.html'
43 # tag: '/tag/:name/'
44 layouts:
45 year: year-archive
46 month: month-archive
47 category: tag-category
48 # tag: tag-archive-layout
49
50 rss_path: feed.xml
51 sass:
52 sass_dir: _scss
53 style: :compressed
54
55 compress_html:
56 clippings: all
57 comments: ["<!-- ", " -->"]
58 profile: false
59 # The following set to true for "Developer mode", when html should be readable
60 blanklines: false