You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This config file is meant for settings that affect your whole site, values
4
+
# which you are expected to set up once and rarely edit after that. If you find
5
+
# yourself editing these this file very often, consider using Jekyll's data files
6
+
# feature for the data you need to update frequently.
7
+
#
8
+
# For technical reasons, this file is *NOT* reloaded automatically when you use
9
+
# 'jekyll serve'. If you change this file, please restart the server process.
5
10
6
-
remote_theme: marella/jekyll-theme-documentation
11
+
# Site settings
12
+
# These are used to personalize your new site. If you look in the HTML files,
13
+
# you will see them accessed via {{ site.title }}, {{ site.github_repo }}, and so on.
14
+
# You can create any custom variable you would like, and they will be accessible
15
+
# in the templates via {{ site.myvariable }}.
16
+
title: MacOS Agent Documentation
17
+
description: Documentation for the MacOS Agent project
18
+
baseurl: ""# the subpath of your site, e.g. /blog
19
+
url: "https://computer-use-agents.github.io/"# the base hostname & protocol for your site, e.g. http://example.com
20
+
repository: computer-use-agents/MacOS-Agent # for github-metadata
7
21
8
22
permalink: pretty
9
-
nav:
10
-
- Getting Started:
11
-
- Introduction: ''
12
-
- Examples:
13
-
- Markdown: docs/examples
23
+
24
+
defaults:
25
+
- scope:
26
+
path: "docs"# an empty string here means all files in the project
27
+
type: "pages"
28
+
values:
29
+
layout: "default"
30
+
31
+
exclude:
32
+
# from https://github.com/jekyll/jekyll/blob/master/lib/site_template/_config.yml:
33
+
- .sass-cache/
34
+
- .jekyll-cache/
35
+
- gemfiles/
36
+
- Gemfile
37
+
- Gemfile.lock
38
+
- node_modules/
39
+
- vendor/bundle/
40
+
- vendor/cache/
41
+
- vendor/gems/
42
+
- vendor/ruby/
43
+
# specific to the theme website:
44
+
- bin/
45
+
- lib/
46
+
- "*.gemspec"
47
+
- "*.gem"
48
+
- LICENSE.txt
49
+
- package.json
50
+
- package-lock.json
51
+
- Rakefile
52
+
- README.md
53
+
- CODE_OF_CONDUCT.md
54
+
- docker-compose.yml
55
+
- Dockerfile
56
+
# theme test code
57
+
- fixtures/
58
+
59
+
# Set a path/url to a logo that will be displayed instead of the title
60
+
#logo: "/assets/images/just-the-docs.png"
61
+
62
+
# Enable or disable the site search
63
+
# Supports true (default) or false
64
+
search_enabled: true
65
+
search:
66
+
# Split pages into sections that can be searched individually
67
+
# Supports 1 - 6, default: 2
68
+
heading_level: 2
69
+
# Maximum amount of previews per search result
70
+
# Default: 3
71
+
previews: 2
72
+
# Maximum amount of words to display before a matched word in the preview
73
+
# Default: 5
74
+
preview_words_before: 3
75
+
# Maximum amount of words to display after a matched word in the preview
76
+
# Default: 10
77
+
preview_words_after: 3
78
+
# Set the search token separator
79
+
# Default: /[\s\-/]+/
80
+
# Example: enable support for hyphenated search words
81
+
tokenizer_separator: /[\s/]+/
82
+
# Display the relative url in search results
83
+
# Supports true (default) or false
84
+
rel_url: true
85
+
# Enable or disable the search button that appears in the bottom right corner of every page
86
+
# Supports true or false (default)
87
+
button: false
88
+
# Focus the search input by pressing `ctrl + focus_shortcut_key` (or `cmd + focus_shortcut_key` on macOS)
89
+
focus_shortcut_key: "k"
90
+
91
+
# For copy button on code
92
+
enable_copy_code_button: true
93
+
94
+
# By default, consuming the theme as a gem leaves mermaid disabled; it is opt-in
95
+
mermaid:
96
+
# Version of mermaid library
97
+
# Pick an available version from https://cdn.jsdelivr.net/npm/mermaid/
98
+
version: "9.1.6"
99
+
# Put any additional configuration, such as setting the theme, in _includes/mermaid_config.js
100
+
# See also docs/ui-components/code
101
+
# To load mermaid from a local library, also use the `path` key to specify the location of the library; e.g.
102
+
# for (v10+):
103
+
# path: "/assets/js/mermaid.esm.min.mjs"
104
+
# for (<v10):
105
+
# path: "/assets/js/mermaid.min.js"
106
+
# Note: copy both `mermaid.esm.min.mjs` (v10+) or `mermaid.min.js` (<v10) and the associated `.map` file from the specified version of `mermaid/dist` to `/assets/js/`.
0 commit comments