-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,45 @@ | ||
# 代码块需要哪些语言组件 | ||
book: | ||
title: 现代 Java 编程指南 | ||
author: Leon Ding | ||
description: 一本基于 JDK21 版本讲解 Java21 新特性编程实践书籍,采用 WSL + VSCode 作为基础开发环境。 | ||
language: zh-cn # 语言设置 | ||
theme: default # 主题设置 | ||
|
||
|
||
highlight: | ||
- C | ||
- Java | ||
- Rust | ||
- JavaScript | ||
- SQL | ||
|
||
# 目录结构映射 | ||
|
||
directory: | ||
theme: theme # 主题目录 | ||
source: book # markdown 源文件目录 | ||
output: docs # 编译渲染输出目录 | ||
|
||
|
||
nav: | ||
path: root.yaml # 目录映射文件 | ||
|
||
|
||
theme: | ||
name: default | ||
custom_css: assets/custom.css # 自定义CSS文件 | ||
custom_js: assets/custom.js # 自定义JS文件 | ||
logo: assets/logo.png # 网站Logo | ||
|
||
markdown: | ||
extensions: | ||
- markdown.extensions.extra | ||
- markdown.extensions.codehilite | ||
- markdown.extensions.toc | ||
output: | ||
format: html # 输出格式 | ||
|
||
deployment: | ||
provider: github-pages # 部署方式 | ||
repository: [email protected]:auula/posey.git # 仓库地址 | ||
branch: gh-pages # 分支 | ||
|