1.1.0 • Published 3 years ago

vanilla-prism v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

vanilla-prism

vanilla prism 是一个简易使用 prismjs 的库

Use

  1. 使用主题
import { usePrismTheme, Prism } from "vanilla-prism";

// 可用主题:
// "gitbook"
// "solarized"
// "tomorrow"
// "coy"
// "dark"
// "thin-dark"
// "default"
// "okaidia"
// "twilight"
// "darcula"

usePrismTheme("default");
  1. 确保 <code /> 标签 class 有 highlight 和 language-语言 类, 如:
<pre><code class="highlight language-js"></code></pre>
  1. 在 code 标签已经加入 DOM 之后,执行:
Prism.highlightAll();