Hello

· James Linux blog!

#Blockquotes #Links #Code #Inline #Javascript #HTML #Images #Lists #Unordered #Ordered #Tables

This is my first blog post.

Check out some resources:

###Blockquotes

Blockquotes

Paragraphs and Line Breaks

"Blockquotes Blockquotes", Link

###Links

Links

Links with title

<link> : https://github.com

Reference link

GFM a-tail link @pandao

###Code Blocks (multi-language) & highlighting

####Inline code

$ npm install marked

####Code Blocks (Indented style)

Indented 4 spaces, like <pre> (Preformatted Text).

<?php
    echo "Hello world!";
?>

Code Blocks (Preformatted text):

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

####Javascript 

 1function test(){
 2	console.log("Hello world!");
 3}
 4(function(){
 5    var box = function(){
 6        return box.fn.init();
 7    };
 8
 9    box.prototype = box.fn = {
10        init : function(){
11            console.log('box.init()');
12
13			return this;
14        },
15
16		add : function(str){
17			alert("add", str);
18
19			return this;
20		},
21
22		remove : function(str){
23			alert("remove", str);
24
25			return this;
26		}
27    };
28
29    box.fn.init.prototype = box.fn;
30
31    window.box =box;
32})();
33
34var testBox = box();
35testBox.add("jQuery").remove("jQuery");

####HTML code

 1<!DOCTYPE html>
 2<html>
 3    <head>
 4        <mate charest="utf-8" />
 5        <title>Hello world!</title>
 6    </head>
 7    <body>
 8        <h1>Hello world!</h1>
 9    </body>
10</html>

###Images

Image:

Follow your heart.

图为:厦门白城沙滩 Xiamen

图片加链接 (Image + Link):

图为:李健首张专辑《似水流年》封面


###Lists ####Unordered list (-)

####Unordered list (*)

####Unordered list (plus sign and nested)

####Ordered list

  1. Item A
  2. Item B
  3. Item C

###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
Function name Description
help() Display the help window.
destroy() Destroy your computer!
Item Value
Computer $1600
Phone $12
Pipe $1
Left-Aligned Center Aligned Right Aligned
col 3 is some wordy text $1600
col 2 is centered $12
zebra stripes are neat $1

{{ emojify ":v:" }} ⭐ 🐰 🌿 🎷 🍕 🌅 🚗

Cya!