-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_config.yml
88 lines (70 loc) · 2.19 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
78
79
80
81
82
83
84
85
86
87
88
theme: minima
lang: en-GB
# Site settings
title: Accessify Wiki<i> beta</i>
email: [email protected]
x-subtitle: Fixing the Web for all, one site at a time
description: > # this means to ignore newlines until "baseurl:"
Fixing the Web for all, one site at a time.
We are the open, transparent accessibility middleware.
License for fixes: <a href="https://nfreear.mit-license.org">MIT</a>.
Other code: <a href="https://gnu.org/licenses/gpl.html">GPL-3.0+</a>.
Documentation: <a href="https://creativecommons.org/licenses/by/4.0">Creative Commons Attribution</a>.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "https://accessifywiki.github.io"
x-was-url: "http://accessifywiki.org" # the base hostname & protocol for your site
twitter_username: AccessifyWiki
github_username: AccessifyWiki # Was: nfreear
x-legacy-url: http://accessify.wikia.com/wiki/Accessify_Wiki
x-github-url: https://github.com/accessifywiki/accessifywiki.github.io
x-author-url: https://twitter.com/nfreear
ex:
# Was: search-index: /search-index.json
fix_index: /fix/index.json
fix_index_jsonp: /fix/index.js
fix_selector: "#fix-api-json"
fix_regex:
- <script.+json['"]>(.+?)</script>
- ms
js_config:
# Google Analytics.
analytics_id: UA-40194374-5
debug: ok
x-custom-nav:
- <a href="http://accessify.wikia.com/wiki/Accessify_Wiki" title="Accessify wiki on Wikia">Legacy wiki</a>
#- <a href="#">Test 2</a>
#x-site-message: Hello world! Just a <a href="#">test</a>!
# https://access.ecs.soton.ac.uk/ToolBar/
# https://atbar.org/
#x-atbar: true
plugins: # Was: gems:
- json
- yaml
# "multipost" is not a Gem!
collections:
# 2x layouts? https://github.com/jekyll/jekyll/issues/3041; https://github.com/saclark/jekyll-multipost
fixes:
output: true
##layout: [ fix, fix-json ]
permalink: /fix/:path.html
# Was: permalink: /wiki/fix::path.html
# Plus JSON? permalink: /wiki/fix/:path.json
# Requires Jekyll 3.
webrick:
headers:
# CORS header.
Access-Control-Allow-Origin: "*"
keep_files:
- favicon.ico
exclude:
- Makefile
- README.md
- node_modules
- package.json
- Gemfile
- Gemfile.lock
include:
- _pages
# Build settings
markdown: kramdown
#End.