This is where the entire site is stored, and to keep the repository tidy, please contribute as follows.
- Setup project
pnpm i
For develop server, run pnpm dev
.
- Setup cz-git
If you don't know what this is, check out here.
TL;DR
npm install -g cz-git commitizen
echo '{ "path": "cz-git", "$schema": "https://cdn.jsdelivr.net/gh/Zhengqbbb/cz-git@1.8.0/docs/public/schema/cz-git.json" }' > ~/.czrc
replace ~/.czrc to
{
"path": "cz-git",
"$schema": "https://cdn.jsdelivr.net/gh/Zhengqbbb/cz-git@1.7.0/docs/public/schema/cz-git.json",
"markBreakingChangeMode": true
}
- Additional Formats
- DropDown
// after frontmatter
<script lang="ts" setup>
import DropDown from "../../components/DropDown.vue"
</script>
// something
<DropDown>
<template #label>
`replaceByName()`
</template>
<template #content>
See the [Crafting page](https://groovyscript-docs.readthedocs.io/en/latest/groovyscript/minecraft/crafting/) for details about these.
</template>
</DropDown>