Categories > TinyButStrong general >

block tags for <pre>

The forum is closed. Please use Stack Overflow for submitting new questions. Use tags: tinybutstrong , opentbs
By: edavison
Date: 2006-03-10
Time: 18:50

block tags for <pre>

I have the following html block:

<pre>
[blk1.a;block=pre],[blk1.b],[blk1.c]
</pre>


And it produces the following:

<pre>
a,b,c
</pre><pre>
a,b,c
</pre><pre>
a,b,c
</pre><pre>
a,b,c
</pre>

How do I get the following output instead?

<pre>
a,b,c
a,b,c
a,b,c
a,b,c
</pre>
By: Skrol29
Date: 2006-03-10
Time: 21:53

Re: block tags for <pre>

Hello,

In this case, it's better to use the explicit syntax.
<pre>[blk1;block=begin]
[blk1.a],[blk1.b],[blk1.c][blk1;block=end]
</pre>
By: edavison
Date: 2006-03-10
Time: 22:02

Re: block tags for <pre>

Almost perfect.

What I got with that code was

<pre>
a,b,ca,b,ca,b,ca,b,c
</pre>

So, I did the following and it comes out perfect

<pre>
[blk1;block=begin][blk1.a],[blk1.b],[blk1.c]
[blk1;block=end]
</pre>

Thanks a lot!