Skip to content

Commit

Permalink
Coroutine Documentation (#3)
Browse files Browse the repository at this point in the history
* Added sidebar

* Created md file for coroutines

* Added flexible alerts plugin and Python language support

* Work in progress coroutines article

* Cleaned up sidebar

* Added subMaxLevel

* Completed generator-based coroutines and started async/await coroutines

* Minor updates

* Finished async/await section and added summary

* Renamed coroutines to intro to coroutines

* Added working with coroutines page
  • Loading branch information
vedarshshah authored Mar 30, 2024
1 parent d130f2f commit 9a49053
Show file tree
Hide file tree
Showing 4 changed files with 890 additions and 2 deletions.
4 changes: 3 additions & 1 deletion _sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@

- Software
- Task Planning
- [Task Planning Frameworks](task_planning/task_planning_frameworks.md)
- [Introduction to Coroutines](task_planning/intro_to_coroutines.md)
- [Working with Coroutines](task_planning/working_with_coroutines.md)
- [Task Planning Frameworks](task_planning/task_planning_frameworks.md)
10 changes: 9 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,18 @@
window.$docsify = {
name: 'Duke Robotics Club',
logo: '/_media/logo.jpg',
loadSidebar: true
loadSidebar: true,
subMaxLevel: 2
}
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>

<!-- Additional Language Highlighting Support -->
<!-- See https://docsify.js.org/#/language-highlight?id=language-highlighting -->
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-python.min.js"></script>

<!-- Docsify Plugins -->
<script src="https://unpkg.com/docsify-plugin-flexible-alerts"></script>
</body>
</html>
Loading

0 comments on commit 9a49053

Please sign in to comment.