使用 Markdown

为什么使用 Markdown

  • 看上去不错
  • 既然看上去不错,为什么不试试呢

如何使用 Markdown

1
2
3
4
5
6
7
def show
@widget = Widget(params[:id])
respond_to do |format|
format.html # show.html.erb
format.json { render json: @widget }
end
end
1
2
3
4
5
6
7
8
9
10
public void startThreadUseSubClass() {
class MyThread extends Thread {
public void run() {
System.out.println("start thread using Subclass of Thread");
}
}

MyThread thread = new MyThread();
thread.start();
}