diff -r 1a0b6597e594 -r 9e6ad6607a9e nsis.rst --- a/nsis.rst Sat Feb 10 01:36:16 2018 +0200 +++ b/nsis.rst Sat Feb 10 01:49:07 2018 +0200 @@ -13,6 +13,8 @@ To escape quote use $\. ${MACRO_NAME}, $(VAR_NAME) substituted with macros/variable values. To escape $ use $$. +:: + MessageBox MB_OK "I'll be happy" ; this one puts a ' inside a string MessageBox MB_OK 'And he said to me "Hi there!"' ; this one puts a " inside a string MessageBox MB_OK `And he said to me "I'll be happy!"` ; this one puts both ' and "s inside a string