| *heading 1* | *heading 2* | *heading 3* | *heading 4* | |first cell of text | mix of stuff blah blah blah more stuff | random characters entered by someone who obviously has nothing better to do | blah blah blah more stuff more stuff random characters foo | | next text of foo cell |foo blah blah random characters entered by someone who obviously has nothing better to do blah more stuff | blah blah blah more stuff more stuff blah blah blah more stuff | mix of stuff random characters | |first cell of text| mix of stuff blah blah blah more stuff | random characters entered by someone who obviously has nothing better to do blah blah | blah blah blah more stuff more stuff random characters | | next text of cell | random characters entered by someone who obviously has nothing better to do blah blah blah more stuff | blah blah blah more stuff more stuff blah blah blah more stuff | mix of stuff random characters foo foo foo | | first cell of blah blah text | blah blah mix of stuff blah blah blah more stuff | random characters entered by someone who obviously has nothing better to do | blah blah blah more stuff more stuff random characters |(removed some of the above text to make page shorter -- PeterThoeny - 13 Sep 2000)
| *heading 1* | *heading 2* | *heading 3* | *heading 4* | |first cell of text | mix of stuff blah blah blah more stuff | random characters entered by someone who obviously has nothing better to do | blah blah blah more stuff more stuff random characters foo | | next text of foo cell |foo blah blah random characters entered by someone who obviously has nothing better to do blah more stuff | blah blah blah more stuff more stuff blah blah blah more stuff | mix of stuff random characters | |first cell of text| mix of stuff blah blah blah more stuff | random characters entered by someone who obviously has nothing better to do blah blah | blah blah blah more stuff more stuff random characters | | next text of cell | random characters entered by someone who obviously has nothing better to do blah blah blah more stuff | blah blah blah more stuff more stuff blah blah blah more stuff | mix of stuff random characters foo foo foo |Any thoughts? -- JohnAltstadt - 13 Sep 2000
| *heading 1* | *heading 2* | *heading 3* | *heading 4* | |first cell of text | mix of stuff blah blah blah more stuff | random characters entered by someone who obviously has nothing better to do | blah blah blah more stuff more stuff random characters foo | | next text of foo cell |foo blah blah random characters entered by someone who obviously has nothing better to do blah more stuff | blah blah blah more stuff more stuff blah blah blah more stuff | mix of stuff random characters | |first cell of text| mix of stuff blah blah blah more stuff | random characters entered by someone who obviously has nothing better to do blah blah | blah blah blah more stuff more stuff random characters | | next text of cell | random characters entered by someone who obviously has nothing better to do blah blah blah more stuff | blah blah blah more stuff more stuff blah blah blah more stuff | mix of stuff random characters foo foo foo |As you see, this is gets readable in edit mode. We could extend as per your suggestion. Things to consider:
|*foo*|*bar*| |more foo|more bar| |yet more foo|yet more bar|renders as:
| foo | bar |
|---|---|
| more foo | more bar |
| yet more foo | yet more bar |
|*foo*|*bar*| |more foo|more bar| |yet more foo|yet more bar|IMO we should not extend the table rule with empty lines because this would interfere with the new paragraph rule. Leading space should be OK for visual separation. -- PeterThoeny - 14 Sep 2000
| *Name* | *Address* | *Phone* | | Fred | 123 Sandstone Ave<br> Bedrock | Voice: (888)555-1212<br> Fax: (888)555-1211 | | Barney | 125 Sandstone Ave<br> Bedrock | Voice: (777)555-1212<br> Fax: (777)555-1211 |produces:
| Name | Address | Phone |
|---|---|---|
| Fred | 123 Sandstone Ave Bedrock |
Voice: (888)555-1212 Fax: (888)555-1211 |
| Barney | 125 Sandstone Ave Bedrock |
Voice: (777)555-1212 Fax: (777)555-1211 |
'\' backslash character. This can be used to write readable tables:
You write:
| first row \ | more \ | more \ | no more | | second row \ | more \ | more \ | no more |You get:
| first row | more | more | no more |
| second row | more | more | no more |
sub getRenderedVersion of wiki.pm:
$code = "";
$text =~ s/\r//go;
$text =~ s/\\\n//go;
foreach( split( /\n/, $text ) ) {
-- PeterThoeny - 10 Feb 2001
| TopicClassification: | FeatureDone |