I have been modifying the "bbcode_code" template. How do I add an option to the built-in code tag?
Built in:
[ CODE ] some random code [ /CODE ]
With Option:
[ CODE=javascript ]some random code[ /CODE ]
Then I could print out the option to display the type of code, instead of just the word "Code" it would say "JavaScript Code". below is an example of the bbcode_code template and {option} should just print out the option.
Code:
<div class="bbcode_container">
<div class="bbcode_description">{option} {vb:rawphrase code}:</div>
<pre class="bbcode_code"<vb:if condition="$vboptions['codemaxlines']">style="height:<vb:if condition="$blockheight<$vboptions['codemaxlines']">{vb:math {vb:raw blockheight}*{vb:stylevar mid_fontSize}+{vb:stylevar mid_fontSize}*2}<vb:else />{vb:math {vb:raw blockheight}*{vb:stylevar mid_fontSize}+{vb:stylevar mid_fontSize}}</vb:if>;"</vb:if>>{vb:raw code}</pre>
</div>
Thanks,
Dave