[WordPress]插入好看的程式碼區塊-SyntaxHighlighter Evolved

最後更新日期:2023年12月11日

Table of Contents

安裝

WordPress>外掛>安裝外掛>搜尋SyntaxHighlighter Evolved>啟用

設定

細節設定

  • 顯示行數:✓

使用

新增區塊>搜尋SyntaxHighlighter Code

選擇程式語言,輸入程式碼

範例

import java.util.Scanner;
public class HelloWorld {
    public static void main(String[] args) {
        // Creates a reader instance which takes
        // input from standard input - keyboard
        Scanner reader = new Scanner(System.in);
        System.out.print("Enter a number: ");
        // nextInt() reads the next integer from the keyboard
        int number = reader.nextInt();
        // println() prints the following line to the output screen
        System.out.println("You entered: " + number);
    }
}

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *