====== LineBreak() ======
Category:  Text function

\\ 
=====Description=====
This function returns the line break character (in Windows).

Note that files generated in other operating systems (e.g., Linux, Unix, or MacOS) may have different line break characters.

\\ 
=====Use cases====
This function simplifies adding, finding, or removing line break characters without having to reference the ASCII code for it.

\\ 
=====Arguments=====
This function does not take any arguments.

**Return value type:** Line break

\\ 
=====Examples=====

  'Man' & linebreak() & 'Woman' //Returns 'Man
                                           Woman'

  removetext('Man    , linebreak()) //Returns 'ManWoman'
              Woman'

  code(linebreak()) //Returns 13  (the UTF-8 character code for line break)

\\ 
===== See also =====
  * [[syntax:functions:char|Char(char_code)]]
  * [[syntax:functions:code|Code(text)]]
