mirror of
https://github.com/wez/wezterm.git
synced 2024-11-10 15:04:32 +03:00
d5060ec3c1
I've wanted to avoid checking in all the screenshot pics as the png files change every time I run the generation script, and it bloats the repo over time. This commit changes the doc generation step to use the asciinema web player with the equivalent contents. Really, it's only a smallish step to go from this to just emitting the html directly in the doc pages, but I think I might use the player for some examples in the future. I think this is still a fine step for now in any case. While comparing this with the existing screenshots, I noticed the the Alabaster screen shot png has the wrong color for its rightmost column: there's an issue in wezterm in parsing the dynamic color escapes that causes it to pick up the wrong color. Loading the scheme by name has the correct color and matches how it is shown as of this commit.
28 lines
556 B
TOML
28 lines
556 B
TOML
[book]
|
|
title = "Wez's Terminal Emulator"
|
|
author = "Wez Furlong"
|
|
src = "."
|
|
|
|
[build]
|
|
build-dir = "../gh_pages"
|
|
create-missing = false
|
|
|
|
[output.html]
|
|
additional-css = ["custom.css", "asciinema-player.css"]
|
|
default-theme = "ayu"
|
|
preferred-dark-theme = "ayu"
|
|
git-repository-url = "https://github.com/wez/wezterm"
|
|
additional-js = ["mermaid.min.js", "mermaid-init.js", "asciinema-player.min.js"]
|
|
|
|
[output.html.fold]
|
|
enable = true
|
|
level = 1
|
|
|
|
[output.linkcheck]
|
|
traverse-parent-directories = false
|
|
|
|
[preprocessor]
|
|
|
|
[preprocessor.mermaid]
|
|
command = "mdbook-mermaid"
|