Syntax highlight for office

reformat , color , multi lang and theme

How to use
Syntax: theme:

color:#323232; background-color:#ffffff;

//Example
public class Fibonacci {
    public static long fib(int n) {
        if (n <= 1) return n;
        else return fib(n-1) + fib(n-2);
    }

    public static void main(String[] args) {
        int N = Integer.parseInt(args[0]);
        for (int i = 1; i <= N; i++)
            System.out.println(i + ": " + fib(i));
    }
}

Copy To Clipboard
supported by highlight created by mlwmlw
18803