This is a general question for any seasoned web developers (I myself am not)..
Consider the <script>
tags in this snippet of code sample below for an html file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>QS Sensitivity</title>
<script type="text/x-mathjax-config" async>MathJax.Hub.Config({menuSettings: {zoom: "Hover", zscale: "125%"}});</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML" async></script>
Is it possible to “inline” or “embed” the MathJax library in the standalone HTML file such that the file can be viewed in its entirety offline AND without having a local copy of the library AND without having to access the cdn server? I tried using a js tool called inliner (npm/remy/inliner), which partly worked but I’m having some issues. Does anyone know a way to do this?