我想将主题颜色切换为蓝色,红色或黄色,但是它不起作用。默认为绿色主题。
public static List<Integer> receiveNumbers() {
List<Integer> res = new LinkedList<>();
Integer prv = null;
try (Scanner scan = new Scanner(System.in)) {
while (true) {
int num = scan.nextInt();
if (prv != null && prv == num)
break;
res.add(num);
prv = num;
}
}
return res;
}
https://github.com/digitalcraftsman/hugo-material-docs/blob/master/exampleSite/config.toml
可能是什么问题?