Generally it is not a good idea to include extended characters like punctuation in Passage names, because those characters can have special meaning in story formats.
I suggest renaming your "$character's Name" passage something generic like "Character Sheet" and using code like the following to create your link:
(print: "[[" + $character's Name + "->Character Sheet]]")
I have multiple characters, so they each need to have their own sheet. I was hoping to avoid "hardcoding" their names anywhere -- including titles of passages -- in the event I wanted to change a name later so that I could just change it one place.
I just realized, though, that passages have to be uniquely named, I think, so my plan wasn't going to work anyway.
Comments
I suggest renaming your "$character's Name" passage something generic like "Character Sheet" and using code like the following to create your link:
I have multiple characters, so they each need to have their own sheet. I was hoping to avoid "hardcoding" their names anywhere -- including titles of passages -- in the event I wanted to change a name later so that I could just change it one place.
I just realized, though, that passages have to be uniquely named, I think, so my plan wasn't going to work anyway.
Thanks again!