mirror of
https://github.com/libretro/docs.git
synced 2025-02-16 23:18:12 +00:00
organize development docs TOC / add git file format directives (#222)
* organize developer TOC * add git file format metadata/directives
This commit is contained in:
parent
194f53d8e0
commit
3e774dd9da
21
.editorconfig
Normal file
21
.editorconfig
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# EditorConfig is awesome: http://EditorConfig.org
|
||||||
|
|
||||||
|
# top-most EditorConfig file
|
||||||
|
root = true
|
||||||
|
|
||||||
|
# Unix-style newlines with a newline ending every file
|
||||||
|
[*]
|
||||||
|
end_of_line = lf
|
||||||
|
insert_final_newline = true
|
||||||
|
charset = utf-8
|
||||||
|
|
||||||
|
# Tab indentation (no size specified)
|
||||||
|
[Makefile]
|
||||||
|
indent_style = tab
|
||||||
|
|
||||||
|
# Matches multiple files with brace expansion notation
|
||||||
|
# Set default charset
|
||||||
|
[*.{c,h}]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
trim_trailing_whitespace = true
|
16
.gitattributes
vendored
Normal file
16
.gitattributes
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Set the default behavior, in case people don't have core.autocrlf set.
|
||||||
|
* text=auto
|
||||||
|
|
||||||
|
# Declare files that will always have LF Unix-style line endings on checkout.
|
||||||
|
*.c text eol=lf
|
||||||
|
*.h text eol=lf
|
||||||
|
*.in text eol=lf
|
||||||
|
*.md text eol=lf
|
||||||
|
*.txt text eol=lf
|
||||||
|
|
||||||
|
# Denote all files that are truly binary and should not be modified.
|
||||||
|
*.png binary
|
||||||
|
*.jpg binary
|
||||||
|
*.gif binary
|
||||||
|
*.zip binary
|
||||||
|
*.pdf binary
|
20
mkdocs.yml
20
mkdocs.yml
@ -214,6 +214,9 @@ pages:
|
|||||||
- Contributing:
|
- Contributing:
|
||||||
- 'How to Contribute to the Docs': 'guides/how-to-contribute.md'
|
- 'How to Contribute to the Docs': 'guides/how-to-contribute.md'
|
||||||
- For Developers:
|
- For Developers:
|
||||||
|
- Libretro API and Ecosystem:
|
||||||
|
- 'Libretro API Overview': 'specs/api.md'
|
||||||
|
- 'Libretro Input API': 'specs/retropad.md'
|
||||||
- Compilation:
|
- Compilation:
|
||||||
- Cores:
|
- Cores:
|
||||||
- Nintendo Cores:
|
- Nintendo Cores:
|
||||||
@ -255,18 +258,14 @@ pages:
|
|||||||
- 'PlayStation2': 'compilation/ps2.md'
|
- 'PlayStation2': 'compilation/ps2.md'
|
||||||
- 'PlayStation Portable': 'compilation/psp.md'
|
- 'PlayStation Portable': 'compilation/psp.md'
|
||||||
- 'PlayStation Vita/TV': 'compilation/psvita.md'
|
- 'PlayStation Vita/TV': 'compilation/psvita.md'
|
||||||
- Meta:
|
|
||||||
- 'Core List': 'meta/core_list.md'
|
|
||||||
- 'To Do': 'meta/todo.md'
|
|
||||||
- 'Core Template': 'meta/core_template.md'
|
|
||||||
- 'See Also': 'meta/see_also.md'
|
|
||||||
- RetroArch Development:
|
- RetroArch Development:
|
||||||
- 'Debugging': 'tech/debugging.md'
|
- 'Debugging': 'tech/debugging.md'
|
||||||
- 'Adding Menu Entries': 'tech/new-menu-options.md'
|
- 'Adding Menu Entries': 'tech/new-menu-options.md'
|
||||||
|
- 'Input Overlays': 'specs/overlay.md'
|
||||||
- 'Licenses': 'tech/licenses.md'
|
- 'Licenses': 'tech/licenses.md'
|
||||||
- 'MSVC Runtimes': 'tech/msvc-runtime-versions.md'
|
- 'MSVC Runtimes': 'tech/msvc-runtime-versions.md'
|
||||||
- 'Adding Translations': 'tech/new-translations.md'
|
- 'Adding Translations': 'tech/new-translations.md'
|
||||||
- Protocols:
|
- Network Protocols:
|
||||||
- 'Netplay': 'tech/netplay.md'
|
- 'Netplay': 'tech/netplay.md'
|
||||||
- 'Network Control Interface': 'tech/network-control-interface.md'
|
- 'Network Control Interface': 'tech/network-control-interface.md'
|
||||||
- Core Development:
|
- Core Development:
|
||||||
@ -276,10 +275,11 @@ pages:
|
|||||||
- Shader Development:
|
- Shader Development:
|
||||||
- 'Shader Development Overview': 'specs/shader.md'
|
- 'Shader Development Overview': 'specs/shader.md'
|
||||||
- 'Content-Aware Shaders': 'tech/content-aware-shaders.md'
|
- 'Content-Aware Shaders': 'tech/content-aware-shaders.md'
|
||||||
- Specifications:
|
- Documentation Meta:
|
||||||
- 'Libretro': 'specs/api.md'
|
- 'Core List': 'meta/core_list.md'
|
||||||
- 'RetroPad': 'specs/retropad.md'
|
- 'To Do': 'meta/todo.md'
|
||||||
- 'Overlays': 'specs/overlay.md'
|
- 'Core Template': 'meta/core_template.md'
|
||||||
|
- 'See Also': 'meta/see_also.md'
|
||||||
extra:
|
extra:
|
||||||
version: '0.1.0'
|
version: '0.1.0'
|
||||||
font:
|
font:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user