I have a code snippet I've been using for a long time that includes a user argument "classname" which is supposed to default to the base filename. The important part looks like this:
class $classname=$FILE_BASE$$
This doesn't work anymore; it seems you can no longer embed one $ token inside another (I am not prompted for classname, and the output text ends up being "class $classname=$FILE_BASE$"). Is there a different way we're supposed to accomplish this?