100 lines
2.5 KiB
YAML
100 lines
2.5 KiB
YAML
site_name: n8n工作流自动化指南
|
|
site_description: 专业的n8n工作流学习与实践指南
|
|
site_url: https://your-domain.com
|
|
|
|
# 主题配置
|
|
theme:
|
|
name: material
|
|
language: zh
|
|
features:
|
|
- navigation.tabs
|
|
- navigation.sections
|
|
- navigation.expand
|
|
- navigation.path
|
|
- navigation.top
|
|
- search.highlight
|
|
- search.share
|
|
- toc.follow
|
|
- content.code.copy
|
|
- content.code.annotate
|
|
palette:
|
|
# 现代蓝绿主色调配色方案
|
|
- scheme: default
|
|
primary: cyan
|
|
accent: teal
|
|
toggle:
|
|
icon: material/brightness-7
|
|
name: 切换到暗色模式
|
|
- scheme: slate
|
|
primary: cyan
|
|
accent: amber
|
|
toggle:
|
|
icon: material/brightness-4
|
|
name: 切换到亮色模式
|
|
font:
|
|
text: Arial
|
|
code: Roboto Mono
|
|
icon:
|
|
logo: material/auto-fix
|
|
repo: fontawesome/brands/github
|
|
|
|
# 插件配置
|
|
plugins:
|
|
- search:
|
|
lang: zh
|
|
|
|
# Markdown扩展
|
|
markdown_extensions:
|
|
- pymdownx.highlight
|
|
- pymdownx.superfences
|
|
- admonition
|
|
- pymdownx.details
|
|
- attr_list
|
|
- md_in_html
|
|
- tables
|
|
- footnotes
|
|
- pymdownx.tabbed:
|
|
alternate_style: true
|
|
- pymdownx.snippets:
|
|
base_path: docs
|
|
- pymdownx.emoji:
|
|
emoji_index: !!python/name:material.extensions.emoji.twemoji
|
|
emoji_generator: !!python/name:material.extensions.emoji.to_svg
|
|
|
|
# 导航结构
|
|
nav:
|
|
- 首页: index.md
|
|
- 引言:
|
|
- 背景信息: introduction/background.md
|
|
- 目标读者: introduction/target-audience.md
|
|
- 目的与价值: introduction/purpose-value.md
|
|
- 为什么选择n8n: introduction/why-n8n.md
|
|
- 安装与配置:
|
|
- 快速开始: installation/quick-start.md
|
|
- 本地部署: installation/local-deployment.md
|
|
- 界面介绍: installation/interface.md
|
|
- 凭证管理: installation/credentials.md
|
|
- n8n汉化: installation/localization.md
|
|
- 学习与使用:
|
|
- 常用节点: learning/common-nodes.md
|
|
- 基本工作流创建: learning/basic-workflows.md
|
|
- 避坑指南: learning/pitfalls.md
|
|
- 模板套用: learning/templates.md
|
|
- MCP应用: learning/mcp.md
|
|
- 自然语言编程: learning/natural-language.md
|
|
- 社区节点: learning/community-nodes.md
|
|
- 参考资料:
|
|
- 参考资料: reference/resources.md
|
|
- 术语表: reference/glossary.md
|
|
- AI卓越中心:
|
|
- 职能与支持: ai-center/functions.md
|
|
- 加入我们: ai-center/join.md
|
|
|
|
# 额外CSS样式
|
|
extra_css:
|
|
- stylesheets/extra.css
|
|
|
|
# 版权信息
|
|
copyright: Copyright © 2024 n8n指南项目组
|
|
|