Skip to content

Commit

Permalink
Merge pull request #163 from yarn-slinger/book-tweak
Browse files Browse the repository at this point in the history
Fix missing file
  • Loading branch information
janhohenheim authored Jan 22, 2024
2 parents c642216 + f71fe2c commit 39f71c2
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 27 deletions.
2 changes: 1 addition & 1 deletion docs/book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ title = "Yarn Slinger Book"
[output.html]
git-repository-url = "https://github.com/yarn-slinger/yarn-slinger"
git-repository-icon = "fa-github"
edit-url-template = "https://github.com/yarn-slinger/yarn-slinger/edit/main/docs/src/{path}"
edit-url-template = "https://github.com/yarn-slinger/yarn-slinger/edit/main/docs/{path}"
site-url = "/yarn-slinger/"
cname = "https://yarn-slinger.github.io"
41 changes: 21 additions & 20 deletions docs/src/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
- [Introduction](./introduction.md)
- [Yarn Files](./yarn_files.md)
- [Basics](./yarn_files/basics.md)
- [Running Examples](./yarn_files/running_examples.md)
- [Lines](./yarn_files/lines.md)
- [Variables](./yarn_files/variables.md)
- [Options](./yarn_files/options.md)
- [Nodes](./yarn_files/nodes.md)
- [Markup](./yarn_files/markup.md)
- [Functions](./yarn_files/functions.md)
- [Commands](./yarn_files/commands.md)
- [Bevy Plugin](./bevy_plugin.md)
- [Setup](./bevy_plugin/setup.md)
- [Compiling Yarn Files](./bevy_plugin/compiling_yarn_files.md)
- [`DialogRunner` and a High Level Overview](./bevy_plugin/dialog_runner.md)
- [Localization](./bevy_plugin/localization.md)
- [Assets](./bevy_plugin/assets.md)
- [Variable Storage](./bevy_plugin/variable_storage.md)
- [Custom Functions](./bevy_plugin/custom_functions.md)
- [Custom Commands](./bevy_plugin/custom_commands.md)
- [Dialog Views](./bevy_plugin/dialog_views.md)
- [Working with Yarn Slinger](./working_with_yarn_slinger.md)
- [Yarn Files](./yarn_files.md)
- [Basics](./yarn_files/basics.md)
- [Running Examples](./yarn_files/running_examples.md)
- [Lines](./yarn_files/lines.md)
- [Variables](./yarn_files/variables.md)
- [Options](./yarn_files/options.md)
- [Nodes](./yarn_files/nodes.md)
- [Markup](./yarn_files/markup.md)
- [Functions](./yarn_files/functions.md)
- [Commands](./yarn_files/commands.md)
- [Bevy Plugin](./bevy_plugin.md)
- [Setup](./bevy_plugin/setup.md)
- [Compiling Yarn Files](./bevy_plugin/compiling_yarn_files.md)
- [`DialogRunner` and a High Level Overview](./bevy_plugin/dialog_runner.md)
- [Localization](./bevy_plugin/localization.md)
- [Assets](./bevy_plugin/assets.md)
- [Variable Storage](./bevy_plugin/variable_storage.md)
- [Custom Functions](./bevy_plugin/custom_functions.md)
- [Custom Commands](./bevy_plugin/custom_commands.md)
- [Dialog Views](./bevy_plugin/dialog_views.md)
- [Porting Yarn Slinger](./porting_yarn_slinger.md)
2 changes: 1 addition & 1 deletion docs/src/bevy_plugin/assets.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ These annotations will also be written into the "comment" field of strings files

## Asset Providers

TODO
TODO (Feel free to [contribute](https://github.com/yarn-slinger/yarn-slinger/edit/main/docs/src/bevy_plugin/assets.md)!)

2 changes: 1 addition & 1 deletion docs/src/bevy_plugin/custom_commands.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Custom Commands

TODO
TODO (Feel free to [contribute](https://github.com/yarn-slinger/yarn-slinger/edit/main/docs/src/bevy_plugin/custom_commands.md)!)
2 changes: 1 addition & 1 deletion docs/src/bevy_plugin/custom_functions.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Custom Functions

TODO
TODO (Feel free to [contribute](https://github.com/yarn-slinger/yarn-slinger/edit/main/docs/src/bevy_plugin/custom_functions.md)!)
2 changes: 1 addition & 1 deletion docs/src/bevy_plugin/dialog_views.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Dialog Views

TODO
TODO (Feel free to [contribute](https://github.com/yarn-slinger/yarn-slinger/edit/main/docs/src/bevy_plugin/dialog_views.md)!)
2 changes: 1 addition & 1 deletion docs/src/bevy_plugin/variable_storage.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Variable Storage

TODO
TODO (Feel free to [contribute](https://github.com/yarn-slinger/yarn-slinger/edit/main/docs/src/bevy_plugin/variable_storage.md)!)
5 changes: 5 additions & 0 deletions docs/src/working_with_yarn_slinger.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Working with Yarn Slinger

Yarn Slinger is a port of the widely used dialogue tool [Yarn Spinner](https://yarnspinner.dev/).
They both share the idea of writing dialog in writer-friendly text files called Yarn files.
We will take a look at how to write these in the next chapter, [Yarn Files](./yarn_files.md).
2 changes: 1 addition & 1 deletion docs/src/yarn_files/markup.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Markup

TODO
TODO (Feel free to [contribute](https://github.com/yarn-slinger/yarn-slinger/edit/main/docs/src/yarn_files/markup.md)!)

0 comments on commit 39f71c2

Please sign in to comment.