faviconv-noREADME|ARCHIVES|CATEGORIES|SEARCH|
«Mon Mar 01 2021AkrISrnsnippetcode自定义脚本代码178ca9aRaw
render-math.js
The documentation is a work in progress, and English edition is just an empty shell for now. I will translate it when Chinese edition has done.
(() => {
  vno.callAndListen(() => {
    renderMathInElement(document.body, {
      delimiters: [
        { left: '${', right: '}', display: true },
        { left: '$', right: '$', display: false },
        { left: '\\[', right: '\\]', display: true },
        { left: '\\(', right: '\\)', display: false },
      ],
    });
  }, vno.EEvent.htmlChanged);
  // // 驻留
  // }, vno.EEvent.htmlChanged, document, true);})();
JavaScript
This page is open source, improve it
Graph