Edgewall Software

Changes between Initial Version and Version 5 of Ticket #3794


Ignore:
Timestamp:
Feb 12, 2010, 5:59:12 PM (14 years ago)
Author:
Christian Boos
Comment:

#6482 has been closed as duplicate of this ticket.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3794

    • Property Owner changed from Jonas Borgström to Christian Boos
    • Property Keywords table lists added
    • Property Severity normalminor
    • Property Milestone0.13
  • Ticket #3794 – Description

    initial v5  
     1The following wiki markup:
     2{{{
    13 * this is a table example.
    24   || This row has a '''wrong''' indentation. ||
     
    1012printf("%d", i);
    1113   }}}
     14}}}
     15
     16Renders as:
     17 * this is a table example.
     18   || This row has a '''wrong''' indentation. ||
     19   || This row has a correct indentation. ||
     20   || This row has a correct indentation. ||
     21
     22 * this is a correct block example.
     23   {{{
     24#!c
     25int i = 0;
     26printf("%d", i);
     27   }}}