Difference between revisions of "HowTo Talk:Configure your favorite text editor to work with POV-Ray"

From POV-Wiki
Jump to navigation Jump to search
Line 3: Line 3:
 
Anyone know how to get multi-line PRE tags to not screw up wiki formatting and stay indented per the list structure? I had to split some of them across multiple lines because of this. Preferably a solution using wiki syntax instead of typing out the HTML tags explicitly. [[User:SharkD|SharkD]] 03:43, 24 June 2010 (UTC)
 
Anyone know how to get multi-line PRE tags to not screw up wiki formatting and stay indented per the list structure? I had to split some of them across multiple lines because of this. Preferably a solution using wiki syntax instead of typing out the HTML tags explicitly. [[User:SharkD|SharkD]] 03:43, 24 June 2010 (UTC)
  
 +
Doesn't work:
 
#text text <pre>code
 
#text text <pre>code
 
code
 
code
 
code</pre>
 
code</pre>
 
#text text
 
#text text
 +
 +
Works, but requires HTML markup:
 +
<ol>
 +
<li>text text <pre>code
 +
code
 +
code</pre></li>
 +
<li>text text</li>
 +
</ol>

Revision as of 03:49, 24 June 2010

Formatting of PRE tags...

Anyone know how to get multi-line PRE tags to not screw up wiki formatting and stay indented per the list structure? I had to split some of them across multiple lines because of this. Preferably a solution using wiki syntax instead of typing out the HTML tags explicitly. SharkD 03:43, 24 June 2010 (UTC)

Doesn't work:

  1. text text
    code

code

code

  1. text text

Works, but requires HTML markup:

  1. text text
    code
    code
    code
  2. text text