Docs: Limit pre tag line width

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6251 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2012-08-06 22:26:12 +00:00
parent 5fc29c43e6
commit f2ee8319f0
2 changed files with 10 additions and 2 deletions

View file

@ -260,7 +260,9 @@ Call functions:
\\<b\\>Example (Locate with banner - \W{http://nsis.sourceforge.net/Nxs_plug-in}{NxS plugin} required):\\</b\\> \\<b\\>Example (Locate with banner - \W{http://nsis.sourceforge.net/Nxs_plug-in}{NxS plugin} required):\\</b\\>
\c Section \c Section
\c nxs::Show /NOUNLOAD `$(^Name) Setup` /top `Setup searching something$\r$\nPlease wait... If you can..` /h 1 /can 1 /end \c nxs::Show /NOUNLOAD `$(^Name) Setup` /top \
\c `Setup searching something$\r$\nPlease wait... If you can..` \
\c /h 1 /can 1 /end
\c ${Locate} "C:\WINDOWS" "/L=F /M=*.inf /B=1" "Example8" \c ${Locate} "C:\WINDOWS" "/L=F /M=*.inf /B=1" "Example8"
\c nxs::Destroy \c nxs::Destroy
\c SectionEnd \c SectionEnd
@ -1484,7 +1486,12 @@ Call functions:
\c SectionEnd \c SectionEnd
\c \c
\c Function Example6 \c Function Example6
\c MessageBox MB_OKCANCEL '$$9 "Line File1" =[$9]$\n$$8 "Line #" =[$8]$\n$$7 "Line File2" =[$7]$\n$$6 "Line #" =[$6]' IDOK +2 \c MessageBox MB_OKCANCEL '\
\c $$9 "Line File1" =[$9]$\n\
\c $$8 "Line #" =[$8]$\n\
\c $$7 "Line File2" =[$7]$\n\
\c $$6 "Line #" =[$6]'\
\c IDOK +2
\c StrCpy $0 StopTextCompare \c StrCpy $0 StopTextCompare
\c \c
\c Push $0 \c Push $0

View file

@ -21,6 +21,7 @@ pre {
font-family: Courier New, Courier, mono; font-family: Courier New, Courier, mono;
background-color: #F7F7F7; background-color: #F7F7F7;
padding: 1px; padding: 1px;
overflow-x: auto;
} }
pre b { pre b {
text-decoration: underline; text-decoration: underline;