-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
book.toml
62 lines (51 loc) · 2.11 KB
/
book.toml
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
[book]
authors = ["Seasawher"]
language = "ja"
multilingual = false
src = "booksrc" # 単に src とすると検索ノイズが多くなることを考慮
title = "Lean by Example"
description = "プログラミング言語であるとともに定理証明支援系でもある Lean 言語と、その主要なライブラリの使い方を豊富なコード例とともに解説した資料です。"
[build]
# ビルドしたファイルを保存するディレクトリ
build-dir = "book"
# ビルド実行時に勝手にファイルを作らない
create-missing = false
[output.html]
additional-js = [
# コードブロックごとに実行ボタンを表示する
"assets/blockPlay.js",
# ページごとに実行ボタンを表示する
"assets/filePlay.js",
# 検索機能を改善し、日本語で検索できるようにする
"assets/fzf.umd.js", "assets/elasticlunr.js",
# サイドバーに目次を表示する
"assets/pagetoc.js",
]
additional-css = [
# mdbook-admonish のスタイル
"./assets/mdbook-admonish.css",
# サイドバーに目次を表示する
"./assets/pagetoc.css"
]
# セクション番号を振らない
no-section-label = true
# git リポジトリへのリンクを表示する
git-repository-url = "https://github.com/lean-ja/lean-by-example"
# 編集ボタンを上書きして、コード実行ボタンにするための設定
edit-url-template = "https://raw.githubusercontent.com/lean-ja/lean-by-example/main/{path}"
# 404 ページが正常にはたらくようにするために必要
site-url = "https://lean-ja.github.io/lean-by-example/"
# ayu テーマをデフォルトにする
# Rust テーマでは admonish のスタイルが変になるため
default-theme = "ayu"
[output.html.search]
# 検索したときに、クエリと見出し語が一致していれば見出し語のページがトップに出てくるようにする
boost-title = 25
[output.html.fold]
# 目次の折りたたみの設定
enable = true
level = 0
[preprocessor]
[preprocessor.admonish]
command = "mdbook-admonish"
assets_version = "3.0.2" # do not edit: managed by `mdbook-admonish install`