-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_config.yml
More file actions
58 lines (49 loc) · 1.31 KB
/
_config.yml
File metadata and controls
58 lines (49 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
# Site Configuration
title: A Brief Introduction to Graph Databases
description: A comprehensive guide to graph databases for developers, covering theory, modeling, querying, and practical implementation with code samples in Cypher and Python.
lang: en
# GitHub Pages Configuration
# For project sites: url is https://{username}.github.io, baseurl is /{repository-name}
# For user/org sites: url is https://{username}.github.io, baseurl is ""
# GitHub Pages will override these if GitHub Pages is enabled, but set them explicitly for local dev
url: https://graphtechnologydevelopers.github.io
baseurl: /brief-intro-graph-databases
permalink: /:path/
markdown: kramdown
highlighter: rouge
# Plugins
plugins:
- jekyll-seo-tag
- jekyll-sitemap
# Markdown settings
kramdown:
input: GFM
hard_wrap: false
toc_levels: 2..4
# SEO and Social
twitter:
username: codegraph
# Logo (optional - create this image if needed)
# logo: /assets/images/social-card.png
# Collections
collections:
chapters:
output: true
permalink: /chapters/:name/
# Defaults: make .md files use page layout
defaults:
- scope:
path: ""
type: "pages"
values:
layout: page
- scope:
path: ""
type: "posts"
values:
layout: page
- scope:
path: ""
type: chapters
values:
layout: book