We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It seems that bondage doesn't handle inline links.
This text
This is an inline [[Go to the woods|Test]] and [[Go back to the city|Test2]]
provides four TextResult values.
TextResult
Object { text: "This is and inline ", data: {…} } Object { text: "In the woods", data: {…} } Object { text: "and ", data: {…} } Object { text: "In the city", data: {…} }
It's interesting how it can be handled in a better way...
The text was updated successfully, but these errors were encountered:
you have to put them one after the other
This is an inline [[Go to the woods|Test]] [[Go back to the city|Test2]]
otherwise the first one will be treated as a jump off point to the Test node and not displayed to the user as an option
Remove the "And" so it works as expected
Sorry, something went wrong.
No branches or pull requests
It seems that bondage doesn't handle inline links.
This text
provides four
TextResult
values.It's interesting how it can be handled in a better way...
The text was updated successfully, but these errors were encountered: