Back to index

CL-Markdown

Example:

sub status {  
    print "working";  
} 

Markdown

Example:

sub status {
    print "working";
}

HTML Difference

Insert: 2, Delete: 0, Replace 0

Example:

sub status {
{  
    print "working";
}
"working";  
} 

HTML from CL Markdown

<blockquote>

<p>
Example:</p>

<pre>

<code>
sub status {  
    print "working";  
} 
</code>

</pre>
</blockquote>

Original source

>
 Example:
>
 
>
     sub status {
>
         print "working";
>
     }
>