text__W__ > text __NEXT__ nested blockquote __H__
text__W__ > text > > > text2 __NEXT__ nested blockquote cont'd __H__text2
This is the first level of quoting.__W__ > This is the first level of quoting. > > > This is nested blockquote. > > Back to the first level. __NEXT__ h1 __H__This is nested blockquote.Back to the first level.
It's called LTP.
__W__ It's called [LTP](http://en.wikipedia.org/wiki/Long-term_potentiation Long-term potentiation). __NEXT__ reference link ::link_style('reference') __H__It's called LTP.
__W__ It's called [LTP][1]. [1]: http://en.wikipedia.org/wiki/Long-term_potentiation "Long-term potentiation" __NEXT__ reference link no title ::link_style('inline') __H__This link has no title attribute.
__W__ [This link](http://example.net/) has no title attribute. __NEXT__ multi-paragraphs with reference links ::link_style('reference') __H__This is a paragraph with a link to Google. There's also a link to some other stuff, like Digg and Wikipedia.
Here's another paragraph.
This is fun stuff:
__W__ This is a paragraph with a link to [Google][1]. There's also a link to some other stuff, like [Digg][2] and [Wikipedia][3]. Here's another paragraph. This is fun stuff: * [Google Video is the best!][4] * [Example.org is a close second][5] [1]: http://google.com [2]: http://digg.com [3]: http://wikipedia.org [4]: http://video.google.com "Google Video" [5]: http://www.example.org "Examples" __NEXT__ code __H__printf()
__W__
`printf()`
__NEXT__
inline image ::image_style('inline')
__H__
__W__

__NEXT__
reference image ::image_style('reference')
__H__
__W__
![Delete][1]
[1]: http://example.com/delete.png "Click to delete"
__NEXT__
mixed inline images and links ::image_style('inline') ::link_style('inline')
__H__
Link goes Here. Image goes below:

This is a paragraph with a link to Google. There's also a link to some other stuff, like Digg and Wikipedia. 
__W__
__NEXT__
no fallback ::image_tag_fallback(0) ::image_style('inline')
__H__
__W__

__NEXT__
automatic links
__H__
http://example.com
__W__
a backslash \
a weird combo ![
a curly brace {
1992. not a list item!
__W__ a backslash \\ a weird combo \![ a curly brace \{ 1992\. not a list item! __NEXT__ multi-headers __H__| Animal | Region | Physical traits | Food |
|---|---|---|---|
| Pacman frog | Gran Chaco (Argentina) | Half mouth, half stomach (quite literally!) | Crickets, fish, etc. |
| Animal | Region | Physical traits | Food |
|---|---|---|---|
| Pacman frog | Gran Chaco (Argentina) | Half mouth, half stomach (quite literally!) | Crickets, fish, etc. |
Fun stuff here.
More fun stuff!
__W__ header1 ======= Fun stuff here. header2 ------- More fun stuff! __NEXT__ more complete example ::header_style('atx') __H__A handful of people have asked if there's a way to translate Markdown in reverse — to turn HTML back into Markdown-formatted plain text. The short answer is yes, by using Aaron Swartz's new version of html2text:
html2text is a Python script that convers a page of HTML into clean, easy-to-read plain ASCII. Better yet, that ASCII also happens to be valid Markdown (a text-to-HTML format).
html2text works so well that I'm planning to use it to convert most of my old Daring Fireball articles (the ones I wrote in raw HTML). It's worth noting that if you start with a Markdown document, translate it to HTML, then use html2text to go back to Markdown, it won't give you the exact same document you started with. That sort of complete round-trip fidelity simply is not possible, but html2text comes pretty close.
Also, much like Markdown and SmartyPants, html2text works as a BBEdit text filter. Simply save a copy in the Unix Filters folder in your BBEdit Support folder.
__W__ ## Aaron Swartz's html2text A handful of people have asked if there's a way to translate Markdown in reverse — to turn HTML back into Markdown-formatted plain text. The short answer is yes, by using Aaron Swartz's new version of [html2text][1]: > html2text is a Python script that convers a page of HTML into clean, easy-to-read plain ASCII. Better yet, that ASCII also happens to be valid Markdown (a text-to-HTML format). html2text works so well that I'm planning to use it to convert most of my old Daring Fireball articles (the ones I wrote in raw HTML). It's worth noting that if you start with a Markdown document, translate it to HTML, then use html2text to go back to Markdown, it won't give you the exact same document you started with. That sort of complete round-trip fidelity simply is not possible, but html2text comes pretty close. Also, much like Markdown and SmartyPants, html2text works as a BBEdit text filter. Simply save a copy in the Unix Filters folder in your BBEdit Support folder. [1]: http://www.aaronsw.com/2002/html2text/ __NEXT__ blockquotes containing only phrasal elements __H__Via Wikipedia:
Long-term potentiation is the long-lasting enhancement in communication between two neurons that lasts from minutes to hours.
Sweet.
__W__ Via [Wikipedia][1]: > Long-term potentiation is the long-lasting enhancement in communication between two [neurons][2] that lasts from minutes to hours. Sweet. [1]: http://en.wikipedia.org/wiki/Long-term_potentiation [2]: http://en.wikipedia.org/wiki/Neuron __NEXT__ blockquote containing p __H____W__ > shouldn't add a paragraph parent __NEXT__ __H__shouldn't add a paragraph parent
unmarked paragraph__W__ > unmarked paragraph > > another paragraph > > yet another __NEXT__ code containing backticks (bug #43998) __H__another paragraph
yet another
There is a literal backtick (`) here.
print("a < b") if $c > $d
__W__
`print("a < b") if $c > $d`
__NEXT__
amp, lt, gt within code blocks (bug #43996, example from markdown docs, http://bit.ly/NSrG3)
__H__
I strongly recommend against using any
<blink> tags.
I wish SmartyPants used named entities like — instead of decimal-encoded entites like —.