时间:2021-07-01 10:21:17 帮助过:34人阅读
既可以显示单个代码片段,也可以把html文件中所有指定的代码替换为高亮显示出来。比如对于下面的原本的html文件。
This is a code
#includeint main(){ printf("hello world");} This is another code
class Main{ private String name; Main(String name){ this.name=name; } public static void main(String []args){ Main main=new Main("hello"); System.out.println("init"); }}
如果要把其中的代码替换为高亮显示的话呢,可以这样,通过原来放代码的标签的类,来将代码高亮显示。可以用 css 的选择器,来选中需要高亮的代码区域.就像这样
java codeView.showCodeHtmlByCssSelect(Constant.HTML,".code");
是不是很强大,如果感兴趣的话呢,可以到这里获取,这里有获取方法和详细的使用说明github地址: https://github.com/Thereisnospon/CodeView如果觉得不错的话,可以点击这里点个赞什么的的
这里写图片描述
当然,这是第一次尝试写开源库,如果有哪些不好的地方,或者有什么bug,可以给我一点建议,每个批评都是一次学习的机会可以在项目的issue部分提出建议,也可以发邮件给我
5
邮箱:thereisnospon@qq.com