1+1=10

记记笔记,放松一下...

Sandbox: For Octopress Usage and Markdown Syntax Test

Note: I had switched from Octopress to Pelican since 2015, so this page is not valid any more. Contents in this pages had been changed in order to make pelican happy.

Table Test

Source Code:

1
2
3
4
5
6
Left Aligned Header | Center Header | Right Aligned Header
:-------------------|:-------------:|--------------------:
Cell 0 0            | Cell 0 1      | Cell 0 2
Cell 1 0            | Cell 1 1      | Cell 1 2
 |  | 
Long Long Long Long Line  | Not so long Line  | Short Line

Preview:

Left Aligned Header Center Header Right Aligned Header
Cell 0 0 Cell 0 1 Cell 0 2
Cell 1 0 Cell 1 1 Cell 1 2
Long Long Long Long Line … Not so long Line … Short Line

Code Highlight

Source Code:

1
2
3
4
5
6
7
8
```cpp First Code block of C++
#include <iostream>
int main()
{
    std::cout<<"dbzhang800"<<std::endl;
}

```

Preview:

1
2
3
4
5
#include <iostream>
int main()
{
    std::cout<<"dbzhang800"<<std::endl;
}

Source Code:

1
2
3
4
5
```python
import sys
if __name__ == '__main__':
    pass
```

Preview:

1
2
3
import sys
if __name__ == '__main__':
    pass

Reference