Skip to content

Commit 9c47bba

Browse files
committed
docs: add for pages
1 parent 57b99ae commit 9c47bba

File tree

1 file changed

+95
-0
lines changed

1 file changed

+95
-0
lines changed

_config.yml

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
remote_theme: pmarsceill/just-the-docs
2+
3+
title: 构建你自己的 AI 辅助编码助手
4+
description: 《构建你自己的 AI 辅助编码助手》介绍如何 DIY 一个端到端(从 IDE 插件、模型选型、数据集构建到模型微调)的 AI 辅助编程工具,类似于 GitHub Copilot、JetBrains AI Assistant、AutoDev 等。
5+
6+
heading_anchors: true
7+
8+
footer_content: "This code is distributed under the MPL 2.0 license. See `LICENSE` in this directory."
9+
10+
# Footer last edited timestamp
11+
last_edit_timestamp: true # show or hide edit time - page must have `last_modified_date` defined in the frontmatter
12+
last_edit_time_format: "%b %e %Y at %I:%M %p" # uses ruby's time format: https://ruby-doc.org/stdlib-2.7.0/libdoc/time/rdoc/Time.html
13+
14+
# Footer "Edit this page on GitHub" link text
15+
gh_edit_link: true # show or hide edit this page link
16+
gh_edit_link_text: "Edit this page on GitHub."
17+
gh_edit_repository: "https://github.com/phodal/build-you-own-ai-coding-assistant" # the github URL for your repo
18+
gh_edit_branch: "master" # the branch that your docs are served from
19+
gh_edit_source: docs # the source that your files originate from
20+
gh_edit_view_mode: "tree" # "tree" or "edit" if you want the user to jump into the editor immediately
21+
22+
callouts_level: quiet # or loud
23+
callouts:
24+
highlight:
25+
color: yellow
26+
important:
27+
title: Important
28+
color: blue
29+
new:
30+
title: New
31+
color: green
32+
note:
33+
title: Note
34+
color: purple
35+
warning:
36+
title: Warning
37+
color: red
38+
39+
# Enable or disable the site search
40+
# Supports true (default) or false
41+
search_enabled: true
42+
43+
search:
44+
# Split pages into sections that can be searched individually
45+
# Supports 1 - 6, default: 2
46+
heading_level: 4
47+
# Maximum amount of previews per search result
48+
# Default: 3
49+
previews: 3
50+
# Maximum amount of words to display before a matched word in the preview
51+
# Default: 5
52+
preview_words_before: 5
53+
# Maximum amount of words to display after a matched word in the preview
54+
# Default: 10
55+
preview_words_after: 10
56+
# Set the search token separator
57+
# Default: /[\s\-/]+/
58+
# Example: enable support for hyphenated search words
59+
tokenizer_separator: /[\s/]+/
60+
# Display the relative url in search results
61+
# Supports true (default) or false
62+
rel_url: true
63+
# Enable or disable the search button that appears in the bottom right corner of every page
64+
# Supports true or false (default)
65+
button: false
66+
67+
68+
# Back to top link
69+
back_to_top: true
70+
back_to_top_text: "Back to top"
71+
72+
# Google Analytics Tracking (optional)
73+
# e.g, UA-1234567-89
74+
ga_tracking: G-JR0EZ3NLE1
75+
ga_tracking_anonymize_ip: true # Use GDPR compliant Google Analytics settings (true by default)
76+
77+
#url: "https://eval.unitmesh.cc" # the base hostname & protocol for your site
78+
79+
# Aux links for the upper right navigation
80+
aux_links:
81+
"View in on GitHub":
82+
- "//github.com/phodal/build-you-own-ai-coding-assistant"
83+
84+
# Makes Aux links open in a new tab. Default is false
85+
aux_links_new_tab: true
86+
87+
mermaid:
88+
# Version of mermaid library
89+
# Pick an available version from https://cdn.jsdelivr.net/npm/mermaid/
90+
version: "10.4.0"
91+
92+
93+
plugins:
94+
- jekyll-seo-tag
95+
- jekyll-sitemap

0 commit comments

Comments
 (0)