Developer Center: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Link to Category:Browse.)
(no longer in development)
Line 1: Line 1:
Welcome to the NSIS Wiki.
'''Welcome to the new NSIS Wiki.'''


Start by browsing the [[:Category:Browse|categories]].
Start by browsing the [[:Category:Browse|categories]].
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:
To highlight NSIS scripts, use the <highlight-nsis> tag. For example:

Revision as of 15:19, 23 June 2005

Welcome to the new NSIS Wiki.

Start by browsing the categories.

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