MSG ("") Strikethrough.

Anonynn
12 Aug 2016, 22:48

Is there a way to strike-through a sentence in Quest? I would post an example but Markdown doesn't have strike-through commands as far as I know.


The Pixie
12 Aug 2016, 23:48

Try this (using CSS and HTML):

msg("<span style=\"text-decoration: line-through;\">This is wrong</span>")

Anonynn
13 Aug 2016, 21:56

Nope! This happened lol. I think I'd have to make it an expression. I'd rather keep it a msg for the time being.

Error running script: Error compiling expression '"<span style=\\"text-decoration: line-through;\\">Test</span><br/><br/><br/><br/>"': SyntaxError: Unexpected token "text" <IDENTIFIER>; expected one of <EOF>Line: 1, Column: 17

The Pixie
14 Aug 2016, 07:37

You have double backslashes in yours. This version will cause the roor you see:

msg("<span style=\\"text-decoration: line-through;\\">This is wrong</span>")