中文

Posted by Julius on January 11, 2016

测试区域

第一列 第二列 第三列
右对齐 居中 左对齐
语句 语法
AND / OR SELECT column_name(s)
FROM table_name
WHERE condition
AND/OR condition

  这是第一个中文段落。

  这是第二个中文段落。

  这是第三个中文段落,中间用一个空行分隔,没有使用 br。

  这是第四个中文段落,第三段落末尾没有使用 br,第三和第四段之间有一个空行。

def foo
  puts 'foo'
end

要手动创建代码区块,在写完一行以后,按下Enter,然后按一个Tab,Tab后的段落就会以它原本的形式出现。
下一行仍旧使用Tab开头,也会变成代码的第二行。
以下代码,截取自Timer.cpp

int APIENTRY WinMain(HINSTANCE hInstance,
                 HINSTANCE hPrevInstance,
                 LPSTR     lpCmdLine,
                 int       nCmdShow)
{
	HWND hwnd;
	
	if(hwnd=::FindWindow("ConsoleWindowClass",NULL)) {
		::ShowWindow(hwnd, SW_HIDE);
	}
	
	MSG msg;
	HACCEL hAccelTable;

	// initialize the gobal variables that holds
	// title and the window name
	strcpy(szTitle, "Timer Alert");
	strcpy(szWindowClass, "Window Class");
		
	// Initialize global strings
	MyRegisterClass(hInstance);

	// Perform application initialization:
	if (!InitInstance(hInstance, nCmdShow)) {
		return FALSE;
	}

	// Main message loop:
	while (GetMessage(&msg, NULL, 0, 0)) {
		if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg)) {
			TranslateMessage(&msg);
			DispatchMessage(&msg);
		}
	}

	return msg.wParam;
}
int APIENTRY WinMain(HINSTANCE hInstance,
 HINSTANCE hPrevInstance,
 LPSTR     lpCmdLine,
 int       nCmdShow)
{
 HWND hwnd;
	
 if(hwnd=::FindWindow("ConsoleWindowClass",NULL)) {
  ::ShowWindow(hwnd, SW_HIDE);
 }
	
 MSG msg;
 HACCEL hAccelTable;

 // initialize the global variables that holds
 // title and the window name<br/>	
 strcpy(szTitle, "Timer Alert");
 strcpy(szWindowClass, "Window Class");
		
 // Initialize global strings
 MyRegisterClass(hInstance);

 // Perform application initialization:<br/>
 if (!InitInstance(hInstance, nCmdShow)) {
  return FALSE;
 }

 // Main message loop:<br/>
 while (GetMessage(&msg, NULL, 0, 0)) {
  if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg)) {
   TranslateMessage(&msg);
   DispatchMessage(&msg);
  }
 }

 return msg.wParam;
}

以下是代码区块:

struct ListNode
{
    int m_nKey;
    ListNode *m_pNext;
};

Kick Off

这是第一篇中文的文章,tags是未命名。将来,所有临时记录的文章,都可以放入这里。
刚才试了一下换行的功能,教程上说连续输入两个空格,然后加一个回车符,可以有换行的作用。
的确有这个效果,但是看着十分难受,没有明显的标识,所以还是采用最原始的方式。

<br/>
or
<br>

以下是代码展示区

以下展示如何使用命令来创建最简单的博文。

可以通过 rake 创建 Post

$ rake post title="My first post"

同样使用 rake 创建 Page

$ rake page name="about.md"

然后是最基本的命令,添加所有文件,commit,push

$ git add .
$ git commit -m "blog content"
$ git push origin master	

下一步的打算

下一步的打算,是学习一下 markdown 的语法,然后可以尝试迁移一部分 YouDao Note 中的文章到 Github Blog 中。前提是已经做过一些整理,因为初步计划是将 Github Pages 作为一个正式发布的正式的 Blog 来做。

Just Keep going

sea


This work is licensed under a CC A-S 4.0 International License.