My first blog.

misc jekyll Back 23 Jun 2014


Hi, everybody, This is my first github blog page, it’s my pleasure to see you all. The content contains some Markdown syntax test cases.

Start

Basic writing

Paragraphs

On July 2, an alien mothership entered Earth’s orbit and deployed several dozen saucer-shaped “destroyer” spacecraft, each 15 miles (24 km) wide.

On July 3, the Black Knights, a squadron of Marine Corps F/A-18 Hornets, participated in an assault on a destroyer near the city of Los Angeles.

Headings

The largest heading

The second largest heading

Blockquotes

In the words of Abraham Lincoln:

Pardon my french

Styling text

This text will be italic This text will be bold Everyone must attend the meeting at 5 o’clock today.

Lists

Unordered lists

  • Item 1
  • Item 2
    • Item 2a
    • Item 2b

Ordered lists

  1. Item 1
  2. Item 2
  3. Item 3
    • Item 3a
    • Item 3b
    • Nested lists

  4. Item 1
  5. A corollary to the above item.
  6. Yet another point to consider.
  7. Item 2
    • A corollary that does not need to be ordered.
    • This is indented four spaces, because it’s two spaces further than the item above.
    • You might want to consider making a new list.
  8. Item 3

Images

My helpful screenshot

Code formatting

Inline formats

Here’s an idea: why don’t we take SuperiorProject and turn it into **Reasonable**Project.

Multiple lines

Check out this neat program I wrote:

x = 0
x = 2 + 2
what is x

Visit GitHub!

GitHub Flavored Markdown

Multiple underscores in words

perform_complicated_task do_this_and_do_that_and_another_thing

URL autolinking

http://example.com

Strikethrough

Mistaken text.

Fenced code blocks

Here’s an example:

function test() {
  console.log("notice the blank line before this function?");
}

Syntax highlighting

require 'redcarpet'
markdown = Redcarpet.new("Hello World!")
puts markdown.to_html
function fancyAlert(arg) {
  if(arg) {
    $.facebox({div:'#foo'})
  }
}
1
2
3
4
5
int main(int argc, char *argv[])
{
	printf("Hello, world!");
	return 0;
}

Tables

First Header | Second Header ————- | ————- Content Cell | Content Cell Content Cell | Content Cell

First Header Second Header
Content Cell Content Cell
Content Cell Content Cell
Name Description
Help Display the help window.
Close Closes a window
Name Description
Help Display the help window.
Close Closes a window
Left-Aligned Center Aligned Right Aligned
col 3 is some wordy text $1600
col 2 is centered $12
zebra stripes are neat $1
First Header Second Header
Content from cell 1 Content from cell 2
Content in the first column Content in the second column

Writing on GitHub

Markup

Newlines

Roses are red Violets are blue

Task lists

  • @mentions, #refs, links, formatting, and tags are supported
  • list syntax is required (any unordered or ordered list supported)
  • this is a complete item
  • this is an incomplete item

  • a bigger project
    • first subtask #1234
    • follow up subtask #4321
    • final subtask cc @mention
  • a separate task
comments powered by Disqus