forked from erlang/erlang-org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.yml
77 lines (71 loc) · 1.52 KB
/
_config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
url: "https://www.erlang.org"
baseurl: "" # the subpath of your site
title: "Erlang/OTP" # the name of your site
description: "The official home of the Erlang Programming Language"
plugins:
- jekyll-feed
- jekyll-liquify
collections:
news:
output: true
permalink: /:collection/:path
sort_by: date
releases:
output: true
permalink: /downloads/:path
sort_by: release
patches:
output: true
permalink: /:collection/:path
sort_by: tag_name
posts:
output: true
permalink: /blog/:title/
eeps:
output: true
permalink: /:collection/:path
examples:
output: false
bugs:
output: true
permalink: /:collection/:path
feed:
collections:
news:
path: "/news.xml"
posts:
path: "/blog.xml"
sass:
style: compressed
load_paths:
- _sass
- node_modules
include:
- _redirects
exclude:
- LICENSE
- Makefile
- README.md
- package.json
- package-lock.json
- tsconfig.json
- webpack.json
- otp_versions.table
- Gemfile*
- _scripts/
- _clones/
- _news/README.md
- _posts/README.md
- _releases/README.md
- assets/doc-search*
- docs/doc
- _patches/releases.json
- search.html
## We use the kramdown renderer as it gives us better possibilities
## to configure how it should work and is used by many more project.
##
## I did experients to use commonmark instead, but the syntax
## highlighting of code segments did not work as expected.
kramdown:
## All syntax highlighting is done via javascript
syntax_highlighter: nil