-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_config.yml
More file actions
71 lines (60 loc) · 1.31 KB
/
Copy path_config.yml
File metadata and controls
71 lines (60 loc) · 1.31 KB
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
# Jekyll configuration for GitHub Pages
title: "Vault Training Notes"
description: "Training notes from the KodeKloud courses \"HashiCorp Certified: Vault Associate\" and \"HashiCorp Certified: Vault Operations Professional 2022\""
# GitHub Pages uses kramdown by default
markdown: kramdown
highlighter: rouge
# Plugin configuration
plugins:
- jekyll-relative-links
- jekyll-optional-front-matter
- jekyll-readme-index
- jekyll-default-layout
- jekyll-titles-from-headings
# Enable relative links plugin
relative_links:
enabled: true
collections: false
# Add front matter to files without it
optional_front_matter:
enabled: true
# Use README as index
readme_index:
enabled: true
# Default layout for markdown files
default_layout:
enabled: true
# Extract titles from headings
titles_from_headings:
enabled: true
strip_title: true
collections: false
# Default values for all pages
defaults:
- scope:
path: ""
type: "pages"
values:
layout: "default"
- scope:
path: ""
values:
layout: "default"
# Include patterns
include:
- "_*_.html"
- "_*_.*.html"
# Exclude patterns
exclude:
- "*.pdf"
- "*.sh"
- "*.yaml"
- "*.yml"
- ".git*"
- "Gemfile*"
- "vendor"
# Kramdown configuration
kramdown:
input: GFM
hard_wrap: false
syntax_highlighter: rouge