Skip to content

Commit

Permalink
Minor doc reorg for v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jwlodek committed May 24, 2020
1 parent 0fc7726 commit 3a07412
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions docs/writing.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ root.start()
**Step 2 - Add your widgets**

Next, we want to add widgets to the CUI. We will add 3 scroll menus to represent our lists of TODO, In Progress, and Done, a text field for adding new items for now.
In more complex programs, you may use any object with an implemented `__str__` function to pass to a scroll menu, but in this example, we will simply input strings representing
the different tasks in our list.

```Python
import py_cui
Expand Down
8 changes: 4 additions & 4 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ nav:
- Popups: popups.md
- Keys: keybindings.md
- Writing a PyCUI step-by-step: writing.md
- Classes and Functions:
- For PyCUI Developers: developers.md
- Examples: examples.md
- About: about.md
- API Docstring Docs:
- PyCUI: DocstringGenerated/PyCui.md
- Grid: DocstringGenerated/Grid.md
- UI: DocstringGenerated/Ui.md
Expand All @@ -21,7 +24,4 @@ nav:
- Widget Sets: DocstringGenerated/WidgetSet.md
- Renderer: DocstringGenerated/Renderer.md
- Keys: DocstringGenerated/Keys.md
- For PyCUI Developers: developers.md
- Examples: examples.md
- About: about.md
theme: readthedocs

0 comments on commit 3a07412

Please sign in to comment.