Dear all:

I found this can be done by some javascript macro.
So, there's no need for "feature request"

I will post the full macro later

exports.run = function(variable_name) {
    var output = "";
    var p = this;
    var v0 = "";
    while (p)
    {
        var v = p.getVariable(variable_name);
        if ( v && v!=v0)
        {
            output = output + "[[" + v + "]] ";
            v0 = v;
        }
        p = p.parentWidget;
    }
    return output;
};


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.

Reply via email to