Day01:Typora中MarkDown語法學習
阿新 • • 發佈:2021-12-14
標題
前面加上#空格,按#的個數分等級
字型
hello“兩邊加**”
hello“兩邊加*”
hello
hello“兩邊加~~'
引用
“大於”符號即可
分割線
三個-或者三個*
圖片
(英文輸入法的![]+())
超連結
英文中括號[*此內輸入指令名*]加英文(*此內貼上連結*)
列表
-
(按1加.加空格)
-
無序列表,
-
按”減號-”加空格
表格
可以滑鼠右鍵插入表格,也可以選擇輸入以下方式:
|名字|性別|出生日期|
|--|--|--|
|十面良人|男|2003.8.18|
然後檢視中選擇原始碼模式刪去其中多餘空白程式碼行,得到如下:
名字 | 性別 | 出生日期 |
---|---|---|
十面良人 | 男 | 2003.8.18 |
程式碼
public class HelloWorld {
public static void main(String[] args) {
//單行註釋
//輸出一個Hello,world!
System.out.println("Hello,World!");
//多行註釋:可以註釋一段文字 /*註釋*/
/*
Best wishes for a wonderful world
The way ahead is so long without ending, yet high and low I'll search with my will unbending.
此為多行註釋測試
此為多行註釋測試
*/
//JavaDoc:文件註釋 /** */
/**
* @Description:HelloWorld
* @Author:十面良人
*/
}
}
三個頓號“·”再輸入Java即可進入Java程式碼編寫模式.