Developer Center: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
Wiki | Welcome to the NSIS Wiki. | ||
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=). | |||
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