-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_config.yml
More file actions
80 lines (70 loc) · 1.47 KB
/
_config.yml
File metadata and controls
80 lines (70 loc) · 1.47 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
72
73
74
75
76
77
78
79
80
# Site settings
title: Argorator
description: >-
Transform any shell script into a fully-featured command-line tool with zero effort.
Argorator automatically converts your shell scripts' variables and positional arguments
into a proper CLI interface with --help, argument validation, and type conversion.
baseurl: "/argorator" # the subpath of your site, e.g. /blog
url: "https://dotle.github.io" # the base hostname & protocol for your site
# Build settings
markdown: kramdown
highlighter: rouge
theme: minima
# Enable syntax highlighting
kramdown:
syntax_highlighter: rouge
syntax_highlighter_opts:
block:
line_numbers: true
# Plugins
plugins:
- jekyll-feed
- jekyll-sitemap
- jekyll-seo-tag
# Navigation menu
header_pages:
- index.md
- docs/README.md
- docs/features/google_style_annotations.md
- CHANGELOG.md
# GitHub repository info
github_username: dotle
repository: dotle/argorator
# SEO settings
author: Argorator Team
twitter:
username:
card: summary
# Collections
collections:
features:
output: true
permalink: /:collection/:name/
# Defaults
defaults:
- scope:
path: ""
type: "pages"
values:
layout: "page"
- scope:
path: "docs"
type: "pages"
values:
layout: "page"
- scope:
path: ""
type: "features"
values:
layout: "page"
# Exclude files
exclude:
- src/
- tests/
- .git/
- .github/
- .gitignore
- .cursorrules
- pyproject.toml
- sample.sh
- LICENSE