js的code标签显示插件

2021-03-29 07:32

阅读:624

标签:lan   world   prism   tag   code   下载   插件   代码   return   

prism的官方网站地址:https://prismjs.com/index.html。

插件用途是给代码段,即标签中的内容增加样式,通过language-*类来区分应用不同的语义识别。

下载时可以定制支持的语言和主题,我使用了默认的主题,添加了一些常用的语言(c, java, shell javascript等等)。

一些例子

//javascript
//c#
static int Main(string[] args)
{
    Console.WriteLine("Hello World!");
    return 0;
}
# shell
echo "Hello World"
# python
print("This line will be printed.")
//java
package com.helloworld;
 
public class HelloWorld
{
  public static void main(String[] args)
  {
    System.out.println("Hello World");
  }
}

js的code标签显示插件

标签:lan   world   prism   tag   code   下载   插件   代码   return   

原文地址:https://www.cnblogs.com/mosakashaka/p/12609038.html


评论


亲,登录后才可以留言!