This repository has been archived by the owner on Jun 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Improve code blocks, update admonitions
- Loading branch information
1 parent
33a2ced
commit ab4afd3
Showing
15 changed files
with
123 additions
and
142 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,2 +1,3 @@ | ||
theme/* linguist-vendored | ||
scripts/* linguist-vendored | ||
*.md linguist-detectable |
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
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
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,4 +1,8 @@ | ||
#!/usr/bin/env sh | ||
|
||
cargo install --force --version 0.4.35 mdbook | ||
cargo install --force --version 1.12.1 mdbook-admonish | ||
cargo install --force --version 1.13.0 mdbook-admonish | ||
cargo install --force --version 0.14.1 mdbook-toc | ||
cargo install --force --version 0.1.0 mdbook-webinclude | ||
echo $(curl -sS https://raw.githubusercontent.com/phoenixr-codes/mdbook-code-block-plus/master/codeblockplus.css) > theme/codeblockplus.css | ||
echo $(curl -sS https://raw.githubusercontent.com/phoenixr-codes/mdbook-code-block-plus/master/codeblockplus.min.js) > scripts/codeblockplus.js |
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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 |
---|---|---|
|
@@ -28,7 +28,7 @@ scripts as well. | |
The name of the project which will be used for the individual add-ons as well | ||
unless overridden with `pack.*.name` where `*` is one of `bp`, `rp`, `sp` or `wt`. | ||
|
||
```toml | ||
```toml,icon=gear,filepath=allay.toml | ||
[project.name] | ||
de-de = "Hallo Welt" | ||
en-us = "Hello World" | ||
|
@@ -40,7 +40,7 @@ The description of the project which will be used for the individual add-ons as | |
well unless overridden with `pack.*.description` where `*` is one of `bp`, `rp`, | ||
`sp` or `wt`. | ||
|
||
```toml | ||
```toml,icon=gear,filepath=allay.toml | ||
[project.description] | ||
de-de = "Das ist mein tolles Projekt." | ||
en-us = "This is my amazing project." | ||
|
@@ -53,7 +53,7 @@ en-us = "This is my amazing project." | |
The version of the project of the form `n.n.n` where `n` is any natural number or | ||
zero. | ||
|
||
```toml | ||
```toml,icon=gear,filepath=allay.toml | ||
[project] | ||
# ... | ||
version = "0.1.0" | ||
|
@@ -66,7 +66,7 @@ Specifies whether the project is currently in development. This has impact on th | |
build process and maybe some scripts. This behavior can be overridden with | ||
`allay build --release`. | ||
|
||
```toml | ||
```toml,icon=gear,filepath=allay.toml | ||
[project] | ||
# ... | ||
development = true | ||
|
@@ -88,7 +88,7 @@ An array of people that are considered the "authors" of the project. An optional | |
email address may be included within angled brackets at the end of each author | ||
entry. | ||
|
||
```toml | ||
```toml,icon=gear,filepath=allay.toml | ||
[project] | ||
# ... | ||
authors = ["John Doe", "Joana Doe <[email protected]>"] | ||
|
@@ -100,7 +100,7 @@ authors = ["John Doe", "Joana Doe <[email protected]>"] | |
The name of the license(s). You might want to include a `LICENSE.txt` file in the | ||
root of your project which contains the content of the license. | ||
|
||
```toml | ||
```toml,icon=gear,filepath=allay.toml | ||
[project] | ||
# ... | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -111,7 +111,7 @@ license = "MIT OR Apache-2.0" | |
|
||
The URL to a site that is the home page for your project. | ||
|
||
```toml | ||
```toml,icon=gear,filepath=allay.toml | ||
[project] | ||
# ... | ||
url = "https://github.com/allay-mc/example" | ||
|
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
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
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,6 +1,6 @@ | ||
# Running Executables | ||
|
||
```toml | ||
```toml,icon=gear,filepath=allay.toml | ||
[scripts] | ||
# ... | ||
pre = [ | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.