Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Workaround for Twine within html

Okay, so I'm wondering if there's a workaround for something like this

<html><span style="color: #DF0101">"I like the name <<print $name>>,"</span></html> bla bla bla

Comments

  • Remove the &lt;html&gt;&lt;/html&gt; wrapper, it's no longer necessary.  A raw/loose HTML tag formatter was added some time ago, which, beyond not requiring the wrapper, handles other wikifiable content (like the &lt;&lt;print&gt;&gt;).

    For example:
    <span style="color: #DF0101">"I like the name <<print $name>>,"</span> bla bla bla
  • Thank you :)
Sign In or Register to comment.