1# Taken from https://nsis.sourceforge.io/Reference/Section 2Section "-hidden section" 3SectionEnd 4 5Section # hidden section 6SectionEnd 7 8Section "!bold section" 9SectionEnd 10 11Section /o "optional" 12SectionEnd 13 14Section "install something" SEC_IDX 15SectionEnd 16 17Section "インストール (install in Japanese)" SEC_J_IDX 18SectionEnd 19 20Section "${SOMETHING0}" SEC_S0_IDX 21SectionEnd 22 23Section "$(SOMETHING1)" SEC_S1_IDX 24SectionEnd 25 26Section "" EMPTY_IDX 27SectionEnd 28 29Section "a$\"" A_Q_IDX 30SectionEnd 31 32Section "b$\"c" B_Q_C_IDX 33SectionEnd 34 35Section "d$\ne" D_Q_E_IDX 36SectionEnd 37 38Section 'Single Quote' 39SectionEnd 40 41Section "Double Quote" 42SectionEnd 43 44Section `Back Quote` 45SectionEnd 46