Initalize

This commit is contained in:
Your Name
2026-05-03 12:12:57 -04:00
commit 38652eb9b5
10603 changed files with 1762136 additions and 0 deletions

1
docs/entering-rcm.md Normal file
View File

@@ -0,0 +1 @@
tba

25
docs/index.md Normal file
View File

@@ -0,0 +1,25 @@
---
# https://vitepress.dev/reference/default-theme-home-page
layout: home
hero:
name: "Jibo Hacks Guide"
text: "Mods 4 us all!1!!"
tagline: This guide will teach you how to mod your Jibo!
actions:
- theme: brand
text: Install
link: /intro-install
- theme: alt
text: Developing for Jibo
link: /intro-dev
features:
- title: Talk to Jibo again!
details: Jibo's speech to text will work again (Not yet completed)
- title: New Features!
details: Now that we have full access to Jibo, we will be adding new features!
- title: Developer Platform
details: We will offer a developer platform, allowing anybody to add something new to Jibo.
---

3
docs/intro-dev.md Normal file
View File

@@ -0,0 +1,3 @@
## Sorry to burst your bubble
but we haven't exactly figured out app development yet :/
Come back at a later date! We should have it figured out by then!

10
docs/intro-install.md Normal file
View File

@@ -0,0 +1,10 @@
# Welcome!
Welcome to our documentation! This guide will detail how you can go about installing mods for Jibo.
## WARNING!!
This is still in early development!! As of May 3rd 2026 if you try to git clone the latest version of JiboOS from our server, it will break your Jibo!!! To be completely honest, we have no clue why. If we did, we would have fixed it by now. I believe it will be fixed soon, but for now, just don't do step (placeholder).
## What you will need:
- Jibo (duh)
- Micro USB to USB A (Make sure it is capable of data transfer.)
- Computer running Linux (Windows might work however it isn't heavily tested)
- 2-4 Hours of free time
- Sanity you're willing to lose

85
docs/mdee.md Normal file
View File

@@ -0,0 +1,85 @@
# Markdown Extension Examples
This page demonstrates some of the built-in markdown extensions provided by VitePress.
## Syntax Highlighting
VitePress provides Syntax Highlighting powered by [Shiki](https://github.com/shikijs/shiki), with additional features like line-highlighting:
**Input**
````md
```js{4}
export default {
data () {
return {
msg: 'Highlighted!'
}
}
}
```
````
**Output**
```js{4}
export default {
data () {
return {
msg: 'Highlighted!'
}
}
}
```
## Custom Containers
**Input**
```md
::: info
This is an info box.
:::
::: tip
This is a tip.
:::
::: warning
This is a warning.
:::
::: danger
This is a dangerous warning.
:::
::: details
This is a details block.
:::
```
**Output**
::: info
This is an info box.
:::
::: tip
This is a tip.
:::
::: warning
This is a warning.
:::
::: danger
This is a dangerous warning.
:::
::: details
This is a details block.
:::
## More
Check out the documentation for the [full list of markdown extensions](https://vitepress.dev/guide/markdown).