Demo Post

This demo page has been used from http://jasonm23.github.io/markdown-css-themes/.

A First Level Header

A Second Level Header

A Third Level Header

A Fourth Level Header

A Fifth Level Header
A Sixed Level Header

Now is the time for all good men to come to the aid of their country. This is just a regular paragraph.

The quick brown fox jumped over the lazy dog’s back.


Header 3

This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.

Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse id sem consectetuer libero luctus adipiscing.

This is an H2 in a blockquote

This is the first level of quoting.

This is nested blockquote.

Back to the first level.

Some of these words are emphasized. Some of these words are emphasized also.

Use two asterisks for strong emphasis. Or, if you prefer, use two underscores instead.

  • Candy.
  • Gum.
  • Booze.
  • Red
  • Green
  • Blue

  • A list item.

With multiple paragraphs.

  • Another item in the list.

  • This is a list item with two paragraphs. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.

Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus. Donec sit amet nisl. Aliquam semper ipsum sit amet velit.* Suspendisse id sem consectetuer libero luctus adipiscing.

  • This is a list item with two paragraphs.

This is the second paragraph in the list item. You’re only required to indent the first line. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.

  • Another item in the same list.

  • A list item with a bit of code inline.

  • A list item with a blockquote:

    This is a blockquote inside a list item.

Here is an example of a pre code block

tell application "Foo"
    beep
end tell

This is an example link.

I start my morning with a cup of coffee and The New York Times.

Code snippet

if __name__ =='__main__':
    img_thread = threading.Thread(target=downloadWallpaper)
    img_thread.start()
    st = '\rDownloading Image'
    current = 1
    while img_thread.is_alive():
        sys.stdout.write(st+'.'*((current)%5))
        current=current+1
        time.sleep(0.3)
    img_thread.join()
    print('\nImage of the day downloaded.')