Warning: strftime() [function.strftime]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/Anchorage' for 'AKDT/-8.0/DST' instead in /Users/dan/Sites/ofolio/pmwiki/pmwiki.php on line 281

Warning: strftime() [function.strftime]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/Anchorage' for 'AKDT/-8.0/DST' instead in /Users/dan/Sites/ofolio/pmwiki/pmwiki.php on line 647

Warning: strftime() [function.strftime]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/Anchorage' for 'AKDT/-8.0/DST' instead in /Users/dan/Sites/ofolio/pmwiki/pmwiki.php on line 647

Warning: strftime() [function.strftime]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/Anchorage' for 'AKDT/-8.0/DST' instead in /Users/dan/Sites/ofolio/pmwiki/pmwiki.php on line 647

Warning: strftime() [function.strftime]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/Anchorage' for 'AKDT/-8.0/DST' instead in /Users/dan/Sites/ofolio/pmwiki/pmwiki.php on line 647

Warning: Cannot modify header information - headers already sent by (output started at /Users/dan/Sites/ofolio/pmwiki/pmwiki.php:281) in /Users/dan/Sites/ofolio/pmwiki/pmwiki.php on line 404
oFolio userFAQ - PmWiki.LineContinuation
SearchWiki:

LineContinuation

About line continuation

This page illustrates how you can continue lines using \ and \\. The instructions on TextFormattingRules say:

  • Use blank lines as separators
  • Use \ (backslash) at the end of a line to join the next line to the current one
  • Use \\ (two backslashes) at the end of a line to force a line break

Let us now give a few examples (the text in the left column shows the markup, and the right column shows how it is rendered).

Example of using \

In this example we pretend that you are writing a list item with a lot of text. Here's what you will get if you don't use line continuation:
 * This list item has so
much text that you wrote it
on several lines
  • This list item has so
much text that you wrote it on several lines

This is how it should be done:
 * This list item has so \
much text that you wrote it \
on several lines
  • This list item has so much text that you wrote it on several lines

Example of using \\

In this example you want to have a newline without leaving the list item. Here's what you will get if you use \:

 * The next sentence should \
be on a line of its own. \
On a line of its own.
  • The next sentence should be on a line of its own. On a line of its own.

This is how it should be done:
 * The next sentence should \
be on a line of its own. \\
On a line of its own.
  • The next sentence should be on a line of its own.
    On a line of its own.

Page last modified on May 23, 2004, at 01:54 AM