mirror of
https://github.com/wiiu-env/WiiUPluginSystem.git
synced 2026-08-28 04:36:39 -05:00
first commit
This commit is contained in:
15
_data/alerts.yml
Normal file
15
_data/alerts.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
tip: '<div class="alert alert-success" role="alert"><i class="fa fa-check-square-o"></i> <b>Tip: </b>'
|
||||
note: '<div class="alert alert-info" role="alert"><i class="fa fa-info-circle"></i> <b>Note: </b>'
|
||||
important: '<div class="alert alert-warning" role="alert"><i class="fa fa-warning"></i> <b>Important: </b>'
|
||||
warning: '<div class="alert alert-danger" role="alert"><i class="fa fa-exclamation-circle"></i> <b>Warning: </b>'
|
||||
end: '</div>'
|
||||
|
||||
callout_danger: '<div class="bs-callout bs-callout-danger">'
|
||||
callout_default: '<div class="bs-callout bs-callout-default">'
|
||||
callout_primary: '<div class="bs-callout bs-callout-primary">'
|
||||
callout_success: '<div class="bs-callout bs-callout-success">'
|
||||
callout_info: '<div class="bs-callout bs-callout-info">'
|
||||
callout_warning: '<div class="bs-callout bs-callout-warning">'
|
||||
|
||||
hr_faded: '<hr class="faded"/>'
|
||||
hr_shaded: '<hr class="shaded"/>'
|
||||
0
_data/definitions.yml
Normal file
0
_data/definitions.yml
Normal file
0
_data/glossary.yml
Normal file
0
_data/glossary.yml
Normal file
107
_data/samplelist.yml
Normal file
107
_data/samplelist.yml
Normal file
@@ -0,0 +1,107 @@
|
||||
entries:
|
||||
- title: Sidebar
|
||||
folders:
|
||||
- title: Food
|
||||
|
||||
folderitems:
|
||||
- title: Bananas
|
||||
url: bananas.html
|
||||
|
||||
subfolder:
|
||||
- title: Apples
|
||||
|
||||
subfolderitems:
|
||||
- title: Fuji apples
|
||||
url: fuji_apples.html
|
||||
|
||||
|
||||
- title: Gala apples
|
||||
url: gala_apples.html
|
||||
|
||||
name:
|
||||
husband: Tom
|
||||
wife: Shannon
|
||||
|
||||
bikes:
|
||||
- title: mountain bikes
|
||||
- title: road bikes
|
||||
- title: hybrid bikes
|
||||
|
||||
|
||||
salesteams:
|
||||
- title: Regions
|
||||
subfolderitems:
|
||||
- location: US
|
||||
- location: Spain
|
||||
- location: France
|
||||
|
||||
toc:
|
||||
- title: Group 1
|
||||
subfolderitems:
|
||||
- page: Thing 1
|
||||
- page: Thing 2
|
||||
- page: Thing 3
|
||||
- title: Group 2
|
||||
subfolderitems:
|
||||
- page: Piece 1
|
||||
- page: Piece 2
|
||||
- page: Piece 3
|
||||
- title: Group 3
|
||||
subfolderitems:
|
||||
- page: Widget 1
|
||||
- page: Widget 2
|
||||
- page: Widget 3
|
||||
|
||||
something: &hello Greetings earthling!
|
||||
myref: *hello
|
||||
|
||||
about:
|
||||
- zero
|
||||
- one
|
||||
- two
|
||||
- three
|
||||
|
||||
numbercolors:
|
||||
- zero:
|
||||
properties: red
|
||||
- one:
|
||||
properties: yellow
|
||||
- two:
|
||||
properties: green
|
||||
- three:
|
||||
properties: blue
|
||||
|
||||
mypages:
|
||||
- section1: Section 1
|
||||
audience: developers
|
||||
product: acme
|
||||
url: facebook.com
|
||||
- section2: Section 2
|
||||
audience: writers
|
||||
product: acme
|
||||
url: google.com
|
||||
- section3: Section 3
|
||||
audience: developers
|
||||
product: acme
|
||||
url: amazon.com
|
||||
- section4: Section 4
|
||||
audience: writers
|
||||
product: gizmo
|
||||
url: apple.com
|
||||
- section5: Section 5
|
||||
audience: writers
|
||||
product: acme
|
||||
url: microsoft.com
|
||||
|
||||
feedback: >
|
||||
This is my feedback to you.
|
||||
Even if I include linebreaks here,
|
||||
all of the linebreaks will be removed when the value is inserted.
|
||||
|
||||
block: |
|
||||
This pipe does something a little different.
|
||||
It preserves the breaks.
|
||||
This is really helpful for code samples,
|
||||
since you can format the code samples with
|
||||
the appropriate
|
||||
white spacing.
|
||||
83
_data/sidebars/dev_sidebar.yml
Normal file
83
_data/sidebars/dev_sidebar.yml
Normal file
@@ -0,0 +1,83 @@
|
||||
# This is your sidebar TOC. The sidebar code loops through sections here and provides the appropriate formatting.
|
||||
|
||||
entries:
|
||||
- title: sidebar
|
||||
product: Development documentation
|
||||
folders:
|
||||
|
||||
- title: Overview
|
||||
output: web, pdf
|
||||
folderitems:
|
||||
|
||||
- title: Get started
|
||||
url: /dev_overview.html
|
||||
output: web, pdf
|
||||
|
||||
- title: General / Preperation
|
||||
output: web, pdf
|
||||
folderitems:
|
||||
|
||||
- title: Setting up the Toolchain
|
||||
url: /dev_toolchain_setup.html
|
||||
output: web, pdf
|
||||
|
||||
- title: Installing the required libraries for creating plugins.
|
||||
url: /dev_required_libraries.html
|
||||
output: web, pdf
|
||||
|
||||
- title: Plugin loader
|
||||
output: web, pdf
|
||||
folderitems:
|
||||
|
||||
- title: How to compile the loader
|
||||
url: /dev_compile_loader.html
|
||||
output: web, pdf
|
||||
|
||||
- title: (Optional) Using an IDE.
|
||||
output: web, pdf
|
||||
folderitems:
|
||||
- title: Setting up an IDE
|
||||
url: /dev_ide_setup.html
|
||||
output: web, pdf
|
||||
- title: Using project templates
|
||||
url: /dev_project_template_in_code_blocks.html
|
||||
output: web, pdf
|
||||
- title: Create a new project for a existing plugin
|
||||
url: /dev_codeblocks_project_from_scratch.html
|
||||
output: web, pdf
|
||||
|
||||
- title: Plugin development
|
||||
output: web, pdf
|
||||
|
||||
folderitems:
|
||||
- title: Overview
|
||||
url: /dev_plugin_creation_overview.html
|
||||
output: web, pdf
|
||||
|
||||
- title: Using the Makefile
|
||||
url: /dev_plugin_makefile.html
|
||||
output: web, pdf
|
||||
|
||||
- title: Setting meta information
|
||||
url: /dev_plugin_creation_overview.html#meta-information
|
||||
output: web, pdf
|
||||
|
||||
- title: How to use official system functions
|
||||
url: /dev_using_system_functions.html
|
||||
output: web, pdf
|
||||
|
||||
- title: Inherit functions from the loader
|
||||
url: /dev_inherit_features.html
|
||||
output: web, pdf
|
||||
|
||||
- title: Using built in hooks
|
||||
url: /dev_plugin_hooks.html
|
||||
output: web, pdf
|
||||
|
||||
- title: Replacing functions
|
||||
url: /dev_function_replacing.html
|
||||
output: web, pdf
|
||||
|
||||
- title: Register to the configuration menu
|
||||
url: /dev_configuration_menu.html
|
||||
output: web, pdf
|
||||
15
_data/sidebars/home_sidebar.yml
Normal file
15
_data/sidebars/home_sidebar.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
# This is your sidebar TOC. The sidebar code loops through sections here and provides the appropriate formatting.
|
||||
|
||||
entries:
|
||||
- title: sidebar
|
||||
product: Overview
|
||||
folders:
|
||||
|
||||
- title: Overview
|
||||
output: web, pdf
|
||||
folderitems:
|
||||
|
||||
- title: Get started
|
||||
url: /index.html
|
||||
output: web, pdf
|
||||
type: homepage
|
||||
5
_data/strings.yml
Normal file
5
_data/strings.yml
Normal file
@@ -0,0 +1,5 @@
|
||||
|
||||
|
||||
# placed here for translation purposes
|
||||
search_placeholder_text: search...
|
||||
search_no_results_text: No results found.
|
||||
6
_data/tags.yml
Normal file
6
_data/tags.yml
Normal file
@@ -0,0 +1,6 @@
|
||||
# Note:
|
||||
# If you are using the createtag script, don't leave an blank line at the end of this file.
|
||||
# In other words, the last line must be the last tag in the allowed-tags list.
|
||||
allowed-tags:
|
||||
- news
|
||||
- overview
|
||||
1
_data/terms.yml
Normal file
1
_data/terms.yml
Normal file
@@ -0,0 +1 @@
|
||||
wups: "Wii U Plugin System"
|
||||
14
_data/topnav.yml
Normal file
14
_data/topnav.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
## Topnav single links
|
||||
## if you want to list an external url, use external_url instead of url. the theme will apply a different link base.
|
||||
topnav:
|
||||
- title: Topnav
|
||||
items:
|
||||
- title: Home
|
||||
url: /index.html
|
||||
- title: Developer documentation
|
||||
url: /dev_overview.html
|
||||
- title: GitHub
|
||||
external_url: https://github.com/Maschell/WiiUPluginSystem
|
||||
- title: GitHub Website
|
||||
external_url: https://github.com/Maschell/WiiUPluginSystem
|
||||
|
||||
Reference in New Issue
Block a user