Appearance
Hello! 👋 ​
a tech support/coding wiki by KraXen72
when i encounter some pesky problem i eventually solve, i make a small note how i did it, to save the next person (possibly myself in the future) some suffering.
suggestions ​
- feel free to just bookmark this and check it if desperate sometime in the future
- also, feel free to open a pull request when you solve some issue/have an idea what could fit here. i'll most likely merge it
- you can use obsidian to edit the
docsfolder
- you can use obsidian to edit the
notes ​
- the sidebars are generated by a script in the root folder, cause vitepress sidebar is not automatic for whatever reason.
- make sure to run
sidebar-generator.jswith node when making/editing/removing some files/folders
- make sure to run
YouTube embeds ​
- i had ChatGPT write a simple YouTube embed vue component (i don't know any Vue).
- use it like this:html
<script setup> import Youtube from '../Youtube.vue'; </script> <Youtube videoId="tD5NrevFtbU"/> # Markdown
contribution guidelines ​
- put all images in
docs/publicand reference them as, or in the folder and import relatively - images & notes should NOT contain spaces.
- notes should have them replaced with
-, as innote title=>note-title - images should have them replaced with
_, as inmy cool image.png=>my_cool_image.png - run with
npm run devfor development - to test the site, run
npm run buildandnpm run preview.