forked from rafiimili/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_config.yml
46 lines (37 loc) · 1.09 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
# Jekyll configuration precedence:
# 1. Gruntfile task
# 2. config.build.yml
# 3. config.yml
name: docs
description: Jirafe Documentation
author:
name: jirafe
email: [email protected]
# Grunt handles images and assets.
exclude: ['node_modules', 'img', 'css', 'js', 'fonts',
'**.png', '**.jpg', '**.jpeg', '**.gif', '**.webp', '**.svg', '**.ico']
include: ['.htaccess']
# Documentation Categories
category-list: [Installing Jirafe, API Documentation, Using Jirafe, Help & Support]
# Keep as an empty string if served up at the root. If served up at a specific
# path (e.g. on GitHub pages) leave off the trailing slash, e.g. /my-project
baseurl: ''
# Dates are not included in permalinks
permalink: pretty
# Syntax highlighting
pygments: true
# Since these are pages, it doesn't really matter
future: true
# Use the redcarpet Markdown renderer
markdown: redcarpet
redcarpet:
extensions: [
'no_intra_emphasis',
'fenced_code_blocks',
'autolink',
'strikethrough',
'superscript',
'with_toc_data',
'tables',
'hardwrap'
]