Remove files that are no longer needed
This commit is contained in:
parent
184b7c46c4
commit
30a9e290da
7 changed files with 0 additions and 574 deletions
Binary file not shown.
Before Width: | Height: | Size: 150 KiB |
Binary file not shown.
Before Width: | Height: | Size: 603 KiB |
Binary file not shown.
Before Width: | Height: | Size: 150 KiB |
Binary file not shown.
Before Width: | Height: | Size: 427 KiB |
|
@ -1,13 +0,0 @@
|
|||
# Changelog
|
||||
|
||||
> Version 0.2 (16/04/2019)
|
||||
- Added introduction, getting started and FAQ
|
||||
- Changed expand to tabs on serials
|
||||
- Added placeholder graphics and cleaned up theme
|
||||
|
||||
> Version 0.1 (15/04/2019)
|
||||
- Initial Alpha
|
||||
- Matched Discords theme
|
||||
- Added required addons
|
||||
- Added Discord icon to top right of coverpage and every main section
|
||||
- Added theme option to top right. Dark and light to start with, more to come later
|
|
@ -1,559 +0,0 @@
|
|||
# Markdown Syntax
|
||||
|
||||
## Headings
|
||||
|
||||
<!-- tabs:start -->
|
||||
|
||||
#### ** Rendered **
|
||||
|
||||
# Heading 1 {docsify-ignore}
|
||||
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
||||
|
||||
## Heading 2 {docsify-ignore}
|
||||
|
||||
Vestibulum lobortis laoreet nunc vel vulputate.
|
||||
|
||||
### Heading 3 {docsify-ignore}
|
||||
|
||||
Suspendisse sit amet tincidunt nibh, ac interdum velit.
|
||||
|
||||
#### Heading 4 {docsify-ignore}
|
||||
|
||||
Donec odio orci, facilisis ac vehicula in, vestibulum ut urna.
|
||||
|
||||
##### Heading 5 {docsify-ignore}
|
||||
|
||||
Commodo sit veniam nulla cillum labore ullamco aliquip quis.
|
||||
|
||||
###### Heading 6 {docsify-ignore}
|
||||
|
||||
Ipsum ea amet dolore mollit incididunt fugiat nulla laboris est sint voluptate.
|
||||
|
||||
#### ** Markdown **
|
||||
|
||||
```markdown
|
||||
# Heading 1
|
||||
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
||||
|
||||
## Heading 2
|
||||
|
||||
Vestibulum lobortis laoreet nunc vel vulputate.
|
||||
|
||||
### Heading 3
|
||||
|
||||
Suspendisse sit amet tincidunt nibh, ac interdum velit.
|
||||
|
||||
#### Heading 4
|
||||
|
||||
Donec odio orci, facilisis ac vehicula in, vestibulum ut urna.
|
||||
|
||||
##### Heading 5
|
||||
|
||||
Commodo sit veniam nulla cillum labore ullamco aliquip quis.
|
||||
|
||||
###### Heading 6
|
||||
|
||||
Ipsum ea amet dolore mollit incididunt fugiat nulla laboris est sint voluptate.
|
||||
```
|
||||
|
||||
<!-- tabs:end -->
|
||||
|
||||
## Text
|
||||
|
||||
<!-- tabs:start -->
|
||||
|
||||
#### ** Rendered **
|
||||
|
||||
Body text
|
||||
|
||||
**Bold text**
|
||||
|
||||
*Italic text*
|
||||
|
||||
~~Strikethrough~~
|
||||
|
||||
<mark>Marked text</mark>
|
||||
|
||||
<pre>Preformatted text</pre>
|
||||
|
||||
<small>Small Text</small>
|
||||
|
||||
This is <sub>subscript</sub>
|
||||
|
||||
This is <sup>superscript</sup>
|
||||
|
||||
#### ** Markdown **
|
||||
|
||||
```markdown
|
||||
Body text
|
||||
|
||||
**Bold text**
|
||||
|
||||
*Italic text*
|
||||
|
||||
~~Strikethrough~~
|
||||
|
||||
<mark>Marked text</mark>
|
||||
|
||||
<pre>Preformatted text</pre>
|
||||
|
||||
<small>Small Text</small>
|
||||
|
||||
This is <sub>subscript</sub>
|
||||
|
||||
This is <sup>superscript</sup>
|
||||
```
|
||||
|
||||
<!-- tabs:end -->
|
||||
|
||||
## Links
|
||||
|
||||
<!-- tabs:start -->
|
||||
|
||||
#### ** Rendered **
|
||||
|
||||
[Inline link](https://google.com)
|
||||
|
||||
[Inline link with title](https://google.com "Google")
|
||||
|
||||
[Reference link by name][link1]
|
||||
|
||||
[Reference link by number][1]
|
||||
|
||||
[Reference link by self]
|
||||
|
||||
[link1]: https://google.com
|
||||
[1]: https://google.com
|
||||
[Reference link by self]: https://google.com
|
||||
|
||||
#### ** Markdown **
|
||||
|
||||
```markdown
|
||||
[Inline link](https://google.com)
|
||||
|
||||
[Inline link with title](https://google.com "Google")
|
||||
|
||||
[Reference link by name][link1]
|
||||
|
||||
[Reference link by number][1]
|
||||
|
||||
[Reference link by self]
|
||||
|
||||
[link1]: https://google.com
|
||||
[1]: https://google.com
|
||||
[Reference link by self]: https://google.com
|
||||
```
|
||||
|
||||
<!-- tabs:end -->
|
||||
|
||||
## Lists
|
||||
|
||||
<!-- tabs:start -->
|
||||
|
||||
#### ** Rendered **
|
||||
|
||||
**Ordered Lists**
|
||||
|
||||
1. Ordered 1
|
||||
1. Ordered 2
|
||||
1. Ordered 2a
|
||||
1. Ordered 2b
|
||||
1. Ordered 2c
|
||||
1. Ordered 3
|
||||
|
||||
**Unordered Lists**
|
||||
|
||||
- Unordered 1
|
||||
- Unordered 2
|
||||
- Unordered 2a
|
||||
- Unordered 2b
|
||||
- Unordered 2c
|
||||
- Unordered 3
|
||||
|
||||
**Task Lists**
|
||||
|
||||
- [x] Task 1
|
||||
- [ ] Task 2
|
||||
- [x] Subtask A
|
||||
- [ ] Subtask B
|
||||
- [ ] Task 3
|
||||
|
||||
#### ** Markdown **
|
||||
|
||||
```markdown
|
||||
**Ordered Lists**
|
||||
|
||||
1. Ordered 1
|
||||
1. Ordered 2
|
||||
1. Ordered 2a
|
||||
1. Ordered 2b
|
||||
1. Ordered 2c
|
||||
1. Ordered 3
|
||||
|
||||
**Unordered Lists**
|
||||
|
||||
- Unordered 1
|
||||
- Unordered 2
|
||||
- Unordered 2a
|
||||
- Unordered 2b
|
||||
- Unordered 2c
|
||||
- Unordered 3
|
||||
|
||||
**Task Lists**
|
||||
|
||||
- [x] Task 1
|
||||
- [ ] Task 2
|
||||
- [x] Subtask A
|
||||
- [ ] Subtask B
|
||||
- [ ] Task 3
|
||||
```
|
||||
|
||||
<!-- tabs:end -->
|
||||
|
||||
## Blockquotes
|
||||
|
||||
<!-- tabs:start -->
|
||||
|
||||
#### ** Rendered **
|
||||
|
||||
> Cras aliquet nulla quis metus tincidunt, sed placerat enim cursus. Etiam
|
||||
> turpis nisl, posuere eu condimentum ut, interdum a risus. Sed non luctus mi.
|
||||
> Quisque malesuada risus sit amet tortor aliquet, a posuere ex iaculis. Vivamus
|
||||
> ultrices enim dui, eleifend porttitor elit aliquet sed.
|
||||
>
|
||||
> *- Quote Source*
|
||||
|
||||
#### ** Markdown **
|
||||
|
||||
```markdown
|
||||
> Cras aliquet nulla quis metus tincidunt, sed placerat enim cursus. Etiam
|
||||
> turpis nisl, posuere eu condimentum ut, interdum a risus. Sed non luctus mi.
|
||||
> Quisque malesuada risus sit amet tortor aliquet, a posuere ex iaculis. Vivamus
|
||||
> ultrices enim dui, eleifend porttitor elit aliquet sed.
|
||||
>
|
||||
> *- Quote Source*
|
||||
```
|
||||
|
||||
<!-- tabs:end -->
|
||||
|
||||
## Notices
|
||||
|
||||
<!-- tabs:start -->
|
||||
|
||||
#### ** Rendered **
|
||||
|
||||
!> **Important** notice with `inline code` and additional placeholder text used
|
||||
to force the content to wrap and span multiple lines.
|
||||
|
||||
?> **Tip** notice with `inline code` and additional placeholder text used to
|
||||
force the content to wrap and span multiple lines.
|
||||
|
||||
#### ** Markdown **
|
||||
|
||||
```markdown
|
||||
!> **Important** notice with `inline code` and additional placeholder text used
|
||||
to force the content to wrap and span multiple lines.
|
||||
|
||||
?> **Tip** notice with `inline code` and additional placeholder text used to
|
||||
force the content to wrap and span multiple lines.
|
||||
```
|
||||
|
||||
<!-- tabs:end -->
|
||||
|
||||
## Tabs
|
||||
|
||||
<!-- tabs:start -->
|
||||
|
||||
#### **English**
|
||||
|
||||
Hello!
|
||||
|
||||
#### **French**
|
||||
|
||||
Bonjour!
|
||||
|
||||
#### **Italian**
|
||||
|
||||
Ciao!
|
||||
|
||||
#### ** Markdown **
|
||||
|
||||
```markdown
|
||||
<!-- tabs:start -->
|
||||
|
||||
#### **English**
|
||||
|
||||
Hello!
|
||||
|
||||
#### **French**
|
||||
|
||||
Bonjour!
|
||||
|
||||
#### **Italian**
|
||||
|
||||
Ciao!
|
||||
|
||||
<!-- tabs:end -->
|
||||
```
|
||||
|
||||
<!-- tabs:end -->
|
||||
|
||||
## Horizontal Rule
|
||||
|
||||
<!-- tabs:start -->
|
||||
|
||||
#### ** Rendered **
|
||||
|
||||
---
|
||||
|
||||
#### ** Markdown **
|
||||
|
||||
```markdown
|
||||
---
|
||||
```
|
||||
|
||||
<!-- tabs:end -->
|
||||
|
||||
## Images
|
||||
|
||||
<!-- tabs:start -->
|
||||
|
||||
#### ** Rendered **
|
||||
|
||||
![alt text](../../docs/assets/img/theme-dark-content.png)
|
||||
|
||||
> ![alt text](../../docs/assets/img/theme-light-content.png)
|
||||
|
||||
#### ** Markdown **
|
||||
|
||||
```markdown
|
||||
![alt text](../../docs/assets/img/theme-dark-content.png)
|
||||
|
||||
> ![alt text](../../docs/assets/img/theme-light-content.png)
|
||||
```
|
||||
|
||||
<!-- tabs:end -->
|
||||
|
||||
## Thumbnails
|
||||
|
||||
<!-- tabs:start -->
|
||||
|
||||
#### ** Rendered **
|
||||
|
||||
**Thumbnails (4)**
|
||||
|
||||
<figure class="thumbnails">
|
||||
<img src="docs/assets/img/theme-dark-cover.png" alt="alt text" title="title text">
|
||||
<img src="docs/assets/img/theme-dark-content.png" alt="alt text" title="title text">
|
||||
<img src="docs/assets/img/theme-light-cover.png" alt="alt text" title="title text">
|
||||
<img src="docs/assets/img/theme-light-content.png" alt="alt text" title="title text">
|
||||
</figure>
|
||||
|
||||
**Thumbnails (2)**
|
||||
|
||||
<figure class="thumbnails">
|
||||
<img src="docs/assets/img/theme-light-content.png" alt="alt text" title="title text">
|
||||
<img src="docs/assets/img/theme-dark-content.png" alt="alt text" title="title text">
|
||||
</figure>
|
||||
|
||||
**Default image with shadows from thumbnail css**
|
||||
|
||||
<figure class="thumbnails">
|
||||
<img src="docs/assets/img/theme-light-content.png" alt="alt text" title="title text">
|
||||
</figure>
|
||||
|
||||
#### ** Markdown **
|
||||
|
||||
```markdown
|
||||
**Thumbnails (4)**
|
||||
|
||||
<figure class="thumbnails">
|
||||
<img src="docs/assets/img/theme-dark-cover.png" alt="alt text" title="title text">
|
||||
<img src="docs/assets/img/theme-dark-content.png" alt="alt text" title="title text">
|
||||
<img src="docs/assets/img/theme-light-cover.png" alt="alt text" title="title text">
|
||||
<img src="docs/assets/img/theme-light-content.png" alt="alt text" title="title text">
|
||||
</figure>
|
||||
|
||||
**Thumbnails (2)**
|
||||
|
||||
<figure class="thumbnails">
|
||||
<img src="docs/assets/img/theme-light-content.png" alt="alt text" title="title text">
|
||||
<img src="docs/assets/img/theme-dark-content.png" alt="alt text" title="title text">
|
||||
</figure>
|
||||
|
||||
**Default image with shadows from thumbnail css**
|
||||
|
||||
<figure class="thumbnails">
|
||||
<img src="docs/assets/img/theme-light-content.png" alt="alt text" title="title text">
|
||||
</figure>
|
||||
```
|
||||
|
||||
<!-- tabs:end -->
|
||||
|
||||
## Code Window
|
||||
|
||||
<!-- tabs:start -->
|
||||
|
||||
#### ** Rendered **
|
||||
|
||||
Windows Joiner Script
|
||||
|
||||
```cmd
|
||||
copy /b rawnand.bin.* rawnand.bin
|
||||
```
|
||||
|
||||
Linux/Mac Joiner Script
|
||||
|
||||
```terminal
|
||||
#!/usr/bin/env bash
|
||||
if command -v pv >/dev/null; then
|
||||
cat rawnand.bin.* | pv -s 30g > rawnand.bin
|
||||
else
|
||||
cat rawnand.bin.* > rawnand.bin
|
||||
fi
|
||||
```
|
||||
|
||||
#### ** Markdown **
|
||||
|
||||
````markdown
|
||||
Windows Joiner Script
|
||||
|
||||
```cmd
|
||||
copy /b rawnand.bin.* rawnand.bin
|
||||
```
|
||||
|
||||
Linux/Mac Joiner Script
|
||||
|
||||
```terminal
|
||||
#!/usr/bin/env bash
|
||||
if command -v pv >/dev/null; then
|
||||
cat rawnand.bin.* | pv -s 30g > rawnand.bin
|
||||
else
|
||||
cat rawnand.bin.* > rawnand.bin
|
||||
fi
|
||||
```
|
||||
````
|
||||
|
||||
<!-- tabs:end -->
|
||||
|
||||
## Tables
|
||||
|
||||
<!-- tabs:start -->
|
||||
|
||||
#### ** Rendered **
|
||||
|
||||
| Left Align | Center Align | Right Align | Non‑Breaking Header |
|
||||
| ---------- |:------------:| -----------:| ------------------------------ |
|
||||
| A1 | A2 | A3 | A4 |
|
||||
| B1 | B2 | B3 | B4 |
|
||||
| C1 | C2 | C3 | C4 |
|
||||
|
||||
#### ** Markdown **
|
||||
|
||||
```markdown
|
||||
| Left Align | Center Align | Right Align | Non‑Breaking Header |
|
||||
| ---------- |:------------:| -----------:| ------------------------------ |
|
||||
| A1 | A2 | A3 | A4 |
|
||||
| B1 | B2 | B3 | B4 |
|
||||
| C1 | C2 | C3 | C4 |
|
||||
```
|
||||
|
||||
<!-- tabs:end -->
|
||||
|
||||
## Keyboard
|
||||
|
||||
<!-- tabs:start -->
|
||||
|
||||
#### ** Rendered **
|
||||
|
||||
<kbd>↑</kbd> Arrow Up
|
||||
|
||||
<kbd>↓</kbd> Arrow Down
|
||||
|
||||
<kbd>←</kbd> Arrow Left
|
||||
|
||||
<kbd>→</kbd> Arrow Right
|
||||
|
||||
<kbd>⇪</kbd> Caps Lock
|
||||
|
||||
<kbd>⌘</kbd> Command
|
||||
|
||||
<kbd>⌃</kbd> Control
|
||||
|
||||
<kbd>⌫</kbd> Delete
|
||||
|
||||
<kbd>⌦</kbd> Delete (Forward)
|
||||
|
||||
<kbd>↘</kbd> End
|
||||
|
||||
<kbd>⌤</kbd> Enter
|
||||
|
||||
<kbd>⎋</kbd> Escape
|
||||
|
||||
<kbd>↖</kbd> Home
|
||||
|
||||
<kbd>⇞</kbd> Page Up
|
||||
|
||||
<kbd>⇟</kbd> Page Down
|
||||
|
||||
<kbd>⌥</kbd> Option, Alt
|
||||
|
||||
<kbd>↵</kbd> Return
|
||||
|
||||
<kbd>⇧</kbd> Shift
|
||||
|
||||
<kbd>␣</kbd> Space
|
||||
|
||||
<kbd>⇥</kbd> Tab
|
||||
|
||||
<kbd>⇤</kbd> Tab + Shift
|
||||
|
||||
#### ** Markdown **
|
||||
|
||||
```markdown
|
||||
<kbd>↑</kbd> Arrow Up
|
||||
|
||||
<kbd>↓</kbd> Arrow Down
|
||||
|
||||
<kbd>←</kbd> Arrow Left
|
||||
|
||||
<kbd>→</kbd> Arrow Right
|
||||
|
||||
<kbd>⇪</kbd> Caps Lock
|
||||
|
||||
<kbd>⌘</kbd> Command
|
||||
|
||||
<kbd>⌃</kbd> Control
|
||||
|
||||
<kbd>⌫</kbd> Delete
|
||||
|
||||
<kbd>⌦</kbd> Delete (Forward)
|
||||
|
||||
<kbd>↘</kbd> End
|
||||
|
||||
<kbd>⌤</kbd> Enter
|
||||
|
||||
<kbd>⎋</kbd> Escape
|
||||
|
||||
<kbd>↖</kbd> Home
|
||||
|
||||
<kbd>⇞</kbd> Page Up
|
||||
|
||||
<kbd>⇟</kbd> Page Down
|
||||
|
||||
<kbd>⌥</kbd> Option, Alt
|
||||
|
||||
<kbd>↵</kbd> Return
|
||||
|
||||
<kbd>⇧</kbd> Shift
|
||||
|
||||
<kbd>␣</kbd> Space
|
||||
|
||||
<kbd>⇥</kbd> Tab
|
||||
|
||||
<kbd>⇤</kbd> Tab + Shift
|
||||
```
|
||||
|
||||
<!-- tabs:end -->
|
|
@ -15,8 +15,6 @@
|
|||
- [Blocking Updates](docs/extras/block-updates)
|
||||
- [Unblocking Updates](docs/extras/unblock-updates)
|
||||
- [Dumping Wii U Discs](docs/extras/dump-games)
|
||||
- [Changelog](docs/extras/changelog)
|
||||
- [MD Syntax](docs/extras/md-syntax)
|
||||
- [About](docs/extras/about)
|
||||
- **Links**
|
||||
- [![Github](https://icongram.jgog.in/simple/github.svg?color=808080&size=16)Github](https://github.com//huhenU/WiiUGuide)
|
||||
|
|
Loading…
Reference in a new issue