nsis.rst
changeset 2230 9e6ad6607a9e
parent 1912 8b81a8f0f692
--- 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