25 Feb
2011
25 Feb
'11
4:14 p.m.
Hello Hans,
first put the function in some namespace, like:
moduledata.mystuff = { } moduledata.mystuff.show_hyph = show_hyph
then register it in the finalizer group (which is the post_linebreak stuff)
nodes.tasks.appendaction("finalizers","after","moduledata.mystuff.show_hyph")
Works perfectly.
(before and after are subgroups that can be used by users if needed; of course one never know to what extent it will influence other processes, so "shipouts","after" might be a better choice)
Ok. In this case it works for me but I'l remember that. Thanks! Patrick