-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.rb
108 lines (90 loc) · 3.13 KB
/
config.rb
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# Unique header generation
require './lib/unique_head.rb'
# Markdown
set :markdown_engine, :redcarpet
set :markdown,
fenced_code_blocks: true,
smartypants: true,
disable_indented_code_blocks: true,
prettify: true,
strikethrough: true,
tables: true,
with_toc_data: true,
no_intra_emphasis: true,
renderer: UniqueHeadCounter
set :haml, { ugly: true }
# Assets
set :css_dir, 'stylesheets'
set :js_dir, 'javascripts'
set :images_dir, 'images'
set :fonts_dir, 'fonts'
# Site Settings
# If set, the logo in the navbar will also be a link to this URL
set :navbar_url, 'https://www.moesif.com'
# SEO Settings
set :host, 'https://www.moesif.com' # the base hostname & protocol for your homepage
set :base_path, '/docs/api' # Base/Root Path of Slate (For example if you proxy Slate at www.example.com/docs, then set to /docs)
set :locale, 'en'
# http://json-ld.org/spec/
set :seo, {
:legal_name => "Moesif, Inc",
:email => "[email protected]",
:contact_point => { # if contact_point is set, all subfields required
:email => "[email protected]",
:telephone => "+1-415-851-9835"
},
:address => { # if address is set, all subfields required
:street_address => "77 Van Ness Ave STE 101-1513",
:address_locality => "San Francisco",
:address_region => "California",
:post_office_box_number => 94102
}
}
# Controls images like Facebook's OG Image'
set :social_image, 'https://www.moesif.com/static/og_image.png'
# No special characters in usernames (i.e. no @)
set :twitter_username, 'MoesifHQ'
set :facebook_username, 'MoesifHQ'
set :facebook_app_id, '232433703771289'
set :github_username, 'Moesif'
# When set, enables Google Analytics tracking script
set :google_analytics_id, 'UA-78525975-1'
set :google_optimize_id, 'GTM-MRVV632'
# Activate the syntax highlighter
activate :syntax
ready do
require './lib/monokai_sublime_slate.rb'
require './lib/multilang.rb'
end
activate :sprockets
activate :autoprefixer do |config|
config.browsers = ['last 2 version', 'Firefox ESR']
config.cascade = false
config.inline = true
end
# Activate LiveReload
activate :livereload
# Github pages require relative links
#activate :relative_assets
#set :relative_links, true
# Build Configuration
configure :build do
# We do want to hash woff and woff2 as there's a bug where woff2 will use
# woff asset hash which breaks things. Trying to use a combination of ignore and
# rewrite_ignore does not work as it conflicts weirdly with relative_assets. Disabling
# the .woff2 extension only does not work as .woff will still activate it so have to
# have both. See https://github.com/slatedocs/slate/issues/1171 for more details.
activate :asset_hash, :exts => app.config[:asset_extensions] - %w[.woff .woff2]
# If you're having trouble with Middleman hanging, commenting
# out the following two lines has been known to help
activate :minify_css
activate :minify_javascript
activate :asset_host, :host => '//apidocs.moesif.com'
# activate :gzip
end
# Deploy Configuration
# If you want Middleman to listen on a different port, you can set that below
set :port, 4567
helpers do
require './lib/toc_data.rb'
end