> I've got <<tiddler x>><<tiddler y>>, both containing tables.  How do I
> remove the line break so that these two tables become connected?
>
> How it is currently:
> |||
>
> |||
>
> How I'd like it:
> |||
> |||

Do you have an extra trailing newline in tiddler X, or perhaps a
leading newline in tiddler y?  If not, then perhaps the CSS for your
table has some excess top/bottom margin or padding?

Also, take note that, even if you eliminate the unwanted white space,
the tables won't actually be 'connected' to each other... that is,
they will still be drawn as two separate tables, each with their own
column widths based on their specific cell content.

This is because of the way that the <<tiddler>> macro works: instead
of reading the source from each referenced tiddler and then rendering
the *combined* content ("inclusion"), each <<tiddler>> macro reads and
then immediately renders the referenced tiddler content *separately*
("transclusion").  Thus, content from one transcluded tiddler cannot
be 'joined' with content from the next transcluded tiddler to produce
a single rendered result, even if the separate results are drawn
immediately adjacent to each other.

Fortunately, there *is* a way to easily implement simple tiddler
'joins' by using a little bit of inline scripting [1] to dynamically
assemble the desired source and *then* rendered the combined result,
like this:
   <script>
   return store.getTiddlerText('X')+store.getTiddlerText('Y')
   </script>

enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios

[1] requires http://www.TiddlyTools.com/#InlineJavascriptPlugin
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to