为你的 Github 仓库引入自动构建的Github Pages静态页面

1. 设置config文件

在Github仓库根目录下创建_config.yml文件。其中的内容为:

yml 复制代码
plugins:
  - jekyll-relative-links
relative_links:
  enabled: true
  collections: true
include:
  - CONTRIBUTING.md
  - README.md
  - LICENSE.md
  - COPYING.md
  - CODE_OF_CONDUCT.md
  - CONTRIBUTING.md
  - ISSUE_TEMPLATE.md
  - PULL_REQUEST_TEMPLATE.md

theme: jekyll-theme-tactile
  • include中应该跟你仓库中的md文件对应
  • theme指定了需要使用的静态页面模板(支持的主题请查看这里

2. 激活仓库配置中的 Github Pages

在您的项目的 Github 页面进入 Settings > Pages ,设置激活即可!

参考

  1. https://pages.github.com/themes/
  2. https://nicolas-van.github.io/easy-markdown-to-github-pages/
相关推荐
ON.LIN30 分钟前
Git提交本地项目到Github
git·github
uhakadotcom1 小时前
使用 Model Context Protocol (MCP) 构建 GitHub PR 审查服务器
后端·面试·github
uhakadotcom1 小时前
Apache Airflow入门指南:数据管道的强大工具
算法·面试·github
uhakadotcom1 小时前
Ruff:Python 代码分析工具的新选择
后端·面试·github
uhakadotcom1 小时前
Mypy入门:Python静态类型检查工具
后端·面试·github
uhakadotcom3 小时前
构建高效自动翻译工作流:技术与实践
后端·面试·github
uhakadotcom5 小时前
AWS Lightsail 简介与实践
后端·面试·github
uhakadotcom6 小时前
OpenAI 的 PaperBench:AI 研究复现基准测试工具
算法·面试·github
weixin_387545647 小时前
探索 GitHub Copilot:当 AI 成为你的贴身编码助手
人工智能·github·copilot
下辈子再也不写代码了7 小时前
分片下载、断点续传与实时速度显示的实现方法
前端·后端·github