mathpix-markdown-it
                                
                                 mathpix-markdown-it copied to clipboard
                                
                                    mathpix-markdown-it copied to clipboard
                            
                            
                            
                        how i can use this mathpix marksdown in our html editor
We are using php and front is normal html how we can utlize this mathpix marksdown into our website please guide we don't have reactjs or angular js in frontend we are using normal html in view please guide us how to utlize this library
Using mathpix-markdown-it in web browsers
If you are loading mathpix-markdown-it from a CDN into a web page, there is no
need to install anything.  Simply use a script tag that loads
mathpix-markdown-it from the CDN.  E.g.,
  <script>
    let script = document.createElement('script');
    script.src = "https://cdn.jsdelivr.net/npm/[email protected]/es5/bundle.js";
    document.head.append(script);
    script.onload = function() {
      const isLoaded = window.loadMathJax();
      if (isLoaded) {
        console.log('Styles loaded!')
      }
    }
  </script>