Developer Center: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Updated author links.)
m (Forgot to take out the author from this page...)
Line 1: Line 1:
{|align=right
|<small>Author: [[{{ns:2}}:KiCHiK|KiCHiK]] ([[{{ns:3}}:KiCHiK|talk]], [[{{ns:-1}}:Contributions/KiCHiK|contrib]])</small>
|}
<br style="clear:both;">
Welcome to the NSIS Wiki.
Welcome to the NSIS Wiki.



Revision as of 03:08, 30 April 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