Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix missing file #163

Merged
merged 2 commits into from
Jan 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)!)