Developer Center: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
No edit summary
 
No edit summary
Line 1: Line 1:
Wiki software successfully installed.
Welcome to the NSIS Wiki.


Please see [http://meta.wikipedia.org/wiki/MediaWiki_i18n documentation on customizing the interface]
This Wiki is still in early development stages. All of the [http://nsis.sourceforge.net/archive/ Archive] content needs to moved, the interface needs to be changed and the URL needs to be sorted (remove ugly index.php?title=).
and the [http://meta.wikipedia.org/wiki/MediaWiki_User%27s_Guide User's Guide] for usage and configuration help.
 
To highlight NSIS scripts, use the <highlight-nsis> tag. For example:
 
<highlight-nsis>
Name "blah"
OutFile "blah.exe"
Section
SetOutPath $INSTDIR
File "blah.txt"
SectionEnd
</highlight-nsis>
 
will result in:
 
<highlight-nsis>
Name "blah"
OutFile "blah.exe"
Section
SetOutPath $INSTDIR
File "blah.txt"
SectionEnd
</highlight-nsis>

Revision as of 14:57, 25 March 2005

Welcome to the NSIS Wiki.

This Wiki is still in early development stages. All of the Archive content needs to moved, the interface needs to be changed and the URL needs to be sorted (remove ugly index.php?title=).

To highlight NSIS scripts, use the <highlight-nsis> tag. For example:

<highlight-nsis>
Name "blah"
OutFile "blah.exe"
Section
SetOutPath $INSTDIR
File "blah.txt"
SectionEnd
</highlight-nsis>

will result in:

Name "blah"
OutFile "blah.exe"
Section
SetOutPath $INSTDIR
File "blah.txt"
SectionEnd