Back to index

CL-Markdown

  • this is a list item indented with tabs
  • this is a list item indented with spaces

Code:

this code block is indented by one tab 

And:

   this code block is indented by two tabs 

And:

+  this is an example list item  
        indented with tabs  
  
+   this is an example list item  
    indented with spaces 

Markdown

  • this is a list item indented with tabs

  • this is a list item indented with spaces

Code:

this code block is indented by one tab

And:

    this code block is indented by two tabs

And:

+   this is an example list item
    indented with tabs

+   this is an example list item
    indented with spaces

HTML Difference

Insert: 6, Delete: 0, Replace 4

  • this is a list item indented with tabs

  • this is a list item indented with spaces

Code:

this code block is indented by one tab
tab 

And:

    this code block is indented by two tabs
tabs 

And:

+   this is an example list item
item  
        indented with tabs
tabs  
  
+   this is an example list item
item  
    indented with spaces
spaces 

HTML from CL Markdown

<ul>

<li>
this is a list item indented with tabs</li>

<li>

<p>
this is a list item indented with spaces</p>

</li>

</ul>

<p>
Code:</p>

<pre>

<code>
this code block is indented by one tab 
</code>

</pre>

<p>
And:</p>

<pre>

<code>
   this code block is indented by two tabs 
</code>

</pre>

<p>
And:</p>

<pre>

<code>
+  this is an example list item  
        indented with tabs  
  
+   this is an example list item  
    indented with spaces 
</code>

</pre>

Original source

+	this is a list item
	indented with tabs

+   this is a list item
    indented with spaces

Code:

	this code block is indented by one tab

And:

		this code block is indented by two tabs

And:

	+	this is an example list item
		indented with tabs
	
	+   this is an example list item
	    indented with spaces