Advertisement
Guest User

Character Escape codes in FOMOD option description text

a guest
Mar 28th, 2015
377
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. The following is an example of using the Character Escape code for a forced CR (Carriage Return) in the description text for any install option in the XML code of a FOMOD installer's ModuleConfig.xml file:
  2.  
  3. <description>
  4. Here is one line followed by two carriage returns.&#xD;
  5. &#xD;
  6. Here is the second and last line of text, so a carriage return is not needed at the end.
  7. </description>
  8.  
  9. NOTE: There are other characters which are illegal and CAN'T be used as plain text between the <description> & </description> tags. If they are used, then the FOMOD will fail with an error. Here is a list of common characters and the Character Escape codes that can be used to produce them in the FOMOD installer option description text:
  10.  
  11. & ---> &amp;
  12. " ---> &quot;
  13. < ---> &lt;
  14. > ---> &gt;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement