```
line 1
line 2
line 3
```
```
text 1
text 2
text 3
<$transclude tiddler="Tiddler 1" mode=block/>
<$transclude tiddler="Tiddler 2" mode=block/>
I would like to use Transclude widget to combine them as a single block.
I tried this:<$transclude tiddler="Tiddler 1" mode=block/>
<$transclude tiddler="Tiddler 2" mode=block/>But I still get two separate codeblocks.
Surrounding these two widget calls with ``` also doesn't work as it does not get wikified.
So how do I do that?
--
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+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.
```
text
more text
```
--
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+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.
<pre><code><$view tiddler="text1"/>
<$view tiddler="text2"/>
</code></pre>
<pre><code><$view tiddler="text1"/>
<$view tiddler="text2"/>
</code></pre>
There is one unexpected glitch, however. After converting my tiddlers, for some unknown reason they look like parsed with the "highlight" plugin that I have.I don't know if this is a bug or it's intentional, but I will ignore this for now.
--
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+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.
The highlight plugin currently applies to all instances of the codeblock widget, including those generated automatically by the core when transcluding non-wikitext tiddlers.
```bash
myVar=value
```