Fork me on GitHub

Jekyll is a popular tools for transforming the plain text into static HTML based site, the Home pages of which can be accessed on Jekyll.

Basic steps to use Jekyll

  • Install the Jekyll: gem install jekyll
  • Enter the local web site directory.
  • Start up the Jekyll server locally using the following command:
jekyll serve

or

jekyll s

Access url locally is http://localhost:4000

Code Sample

Here is a “Hello world” program in Java.

1
2
3
for(int i = 0; i < 100; i++){
	Sysout.out.println("Hello, world.");
}

Text Sample

文字在这里here is string em文字 strong文字

  1. 列表1
  2. 列表2
  • 列表3
  • 列表4

java

ruby

scala

lua

Image Sample

博客中使用的图片,实例如下

thumb chair

原图 chair

这是一本很棒的书 Java语言精粹
我喜欢的网站Google GitHub



Top