pict-docuserve 0.0.4 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.html CHANGED
@@ -10,6 +10,8 @@
10
10
 
11
11
  <!-- Application Stylesheet -->
12
12
  <link href="css/docuserve.css" rel="stylesheet">
13
+ <!-- KaTeX stylesheet for LaTeX equation rendering -->
14
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.21/dist/katex.min.css">
13
15
  <!-- PICT Dynamic View CSS Container -->
14
16
  <style id="PICT-CSS"></style>
15
17
 
@@ -26,6 +28,11 @@
26
28
  <!-- The root container for the Pict application -->
27
29
  <div id="Docuserve-Application-Container"></div>
28
30
 
31
+ <!-- Mermaid diagram rendering -->
32
+ <script src="https://cdn.jsdelivr.net/npm/mermaid@11/dist/mermaid.min.js"></script>
33
+ <script>mermaid.initialize({ startOnLoad: false, theme: 'default' });</script>
34
+ <!-- KaTeX for LaTeX equation rendering -->
35
+ <script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.21/dist/katex.min.js"></script>
29
36
  <!-- Load the Docuserve PICT Application Bundle -->
30
37
  <script src="./pict-docuserve.min.js" type="text/javascript"></script>
31
38
  </body>