Howdy, Stranger!

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

Inserting spaces in Twine 2.0/Sugarcube

I am having the most impossible time trying to insert spaces/tabs in Twine. I have tried &emsp but Twine just actually prints "&emsp." Any help is much appreciated

Comments

  • If you want tabs before paragraph start it's best to use standard css to define the <p> tags. Otherwise you can use
    &nbsp;
    
  • Based on what you've posted here, you've misspelled it. The character entity reference for the EM space is:
    &emsp;
    
    Note the terminating semi-colon which you've omitted in your example.

    If that doesn't resolve your issue, where are you trying to use it? Unfortunately, you cannot insert raw HTML and/or character references just anywhere, so perhaps that is the issue.
Sign In or Register to comment.