From: https://en.wikipedia.org/wiki/Method_overriding

Assume you have a tiddler called *Parent* with the below contents

\define a() This is a
\define b() This is b
\define main()
<<a>>. <<b>>
\end


Now in *tiddler01 *do as below

\import [[Parent]]
<<main>>


After saving it will display
This is a. This is b


and in *tiddler02 *do as below

\import [[Parent]]
\define a() This is NEW a
<<main>>


After saving it will display

This is NEW a. This is b


So, you simple override the method a (in Tiddlywiki macro a).

What do you think?

--Mohammad

-- 
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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9eb8c8de-87d2-416e-82ca-4c884c18fb7e%40googlegroups.com.

Reply via email to