-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce initial documentation template. It resembles how we've approached building docs in other projects like https://github.com/roblox/roact, which has docs hosted at https://roblox.github.io/roact.
- Loading branch information
RoFlection Bot
committed
Jul 6, 2021
1 parent
1e4f981
commit 98322d7
Showing
8 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Closes (ISSUES HERE). | ||
|
||
*Put your pull request body here!* | ||
|
||
Checklist before submitting: | ||
* [ ] Added/updated relevant tests | ||
* [ ] Added/updated documentation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
## (Placeholder) | ||
|
||
* Document all API members of top-level packages (React/ReactRoblox/ReactIs/???) | ||
* The vast majority of these should link to external documentation | ||
* Any members with deviations (e.g. `useState` returning 2 values instead of one array) should noted briefly, and link to a more detailed explanation in the `deviations.md` page if necessary | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.md-typeset hr { | ||
border-bottom: 2px solid rgba(0, 0, 0, 0.15); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Roact is a lua port of Facebook's [React](https://reactjs.org) UI library. | ||
|
||
This documentation is a work in progress. By and large, documentation on React applies directly to Roact, but deviations in API, behavior, or best practice will be documented here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## (Placeholder) | ||
|
||
A comprehensive guide for upgrading Roact codebases to be compatible with the Roact 17. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
mkdocs | ||
mkdocs-material | ||
pymdown-extensions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
site_name: Roact Documentation | ||
site_url: https://roblox.github.io/roact/ | ||
repo_name: Roblox/roact | ||
repo_url: https://github.com/Roblox/roact | ||
|
||
theme: | ||
name: material | ||
palette: | ||
primary: 'indigo' | ||
accent: 'indigo' | ||
scheme: preference | ||
|
||
nav: | ||
- Home: index.md | ||
- Adoption: migrating-from-roact.md | ||
- Deviations: deviations.md | ||
- API Reference: api-reference.md | ||
|
||
extra_css: | ||
- extra.css | ||
|
||
markdown_extensions: | ||
- admonition | ||
- codehilite: | ||
guess_lang: false | ||
- toc: | ||
permalink: true | ||
- pymdownx.superfences |