-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_config.yml
More file actions
153 lines (135 loc) · 2.57 KB
/
_config.yml
File metadata and controls
153 lines (135 loc) · 2.57 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# WebRTC - GitHub Pages Configuration
# https://lessup.github.io/webrtc
title: WebRTC
subtitle: Go + WebRTC 实时音视频示例
email:
description: >-
基于 Go 的 WebRTC 实时音视频示例项目 —— WebSocket 信令 · 房间管理 ·
点对点音视频 · 屏幕共享 · DataChannel 文本聊天 · 本地录制 · 多人 Mesh 通话 · Docker 部署
# Site settings
url: https://lessup.github.io
baseurl: /webrtc
repository: LessUp/webrtc
# Theme
remote_theme: pages-themes/cayman@v0.2.0
# Plugins
plugins:
- jekyll-remote-theme
- jekyll-seo-tag
- jekyll-sitemap
- jekyll-relative-links
# SEO & Social
author:
name: LessUp
url: https://github.com/LessUp
twitter:
username:
github:
username: LessUp
repo: webrtc
lang: zh-CN
copyright: "© 2025-2026 LessUp. Released under MIT License."
# Analytics (optional - uncomment to enable)
# analytics:
# provider: google
# google:
# tracking_id: YOUR_GA_ID
# Features
show_downloads: true
downloads:
source:
label: View Source
url: https://github.com/LessUp/webrtc
zip:
label: Download ZIP
url: https://github.com/LessUp/webrtc/archive/refs/heads/main.zip
# Navigation
nav:
- title: 首页
url: /
- title: 文档
url: /docs/
- title: 指南
url: /docs/guide
- title: API
url: /docs/api
- title: GitHub
url: https://github.com/LessUp/webrtc
external: true
# Markdown rendering
markdown: kramdown
kramdown:
input: GFM
hard_wrap: false
syntax_highlighter: rouge
syntax_highlighter_opts:
css_class: 'highlight'
span:
line_numbers: false
block:
line_numbers: true
start_line: 1
# Sass/SCSS
sass:
sass_dir: assets/css
style: compressed
# Build settings
future: false
incremental: false
lsi: false
# Exclusions
exclude:
- cmd/
- internal/
- web/
- e2e/
- deploy/
- go.mod
- go.sum
- Dockerfile
- Dockerfile.*
- docker-compose*.yml
- .air.toml
- .editorconfig
- .gitattributes
- .golangci.yml
- .env*
- vendor/
- bin/
- _site/
- .jekyll-cache/
- .jekyll-metadata
- "*.gemspec"
- "*.gem"
- Makefile
- LICENSE
- "*.log"
- "*.exe"
- node_modules/
- package*.json
- vitest.config.js
- playwright.config.js
# Include specific files
include:
- _pages
# Collections
collections:
docs:
output: true
permalink: /:collection/:name/
# Defaults
defaults:
- scope:
path: ""
type: "posts"
values:
layout: default
- scope:
path: ""
type: "docs"
values:
layout: default
- scope:
path: "docs/**"
values:
layout: default