How to create your own object links?

Quest will create its own list in descriptions, e.g., "a loaf of bread, a bottle of wine, and thou".

But sometimes I would like to iterate certain subsets differently. In particular something like

* Me first
* Me next

I can iterate over objects to get this stacking of names, but I don't know how to create the links on the fly.
Is there a command or code snippet that will let me create a link to an existing object, perhaps with my own dynamic (contextual) ?

Thanks!
Mark

You can use the textprocessor http://quest5.net/wiki/Text_processor something like this:
msg("You can see {object:" + yourobject.name + "}")

Thanks! That seems to be the ticket!
Mark