Coder Social home page Coder Social logo

Comments (4)

pkra avatar pkra commented on June 3, 2024

For v3, you'll need to look at the examples in https://github.com/mathjax/MathJax-demos-node/

from mathjax-node.

nhpf avatar nhpf commented on June 3, 2024

For v3, you'll need to look at the examples in https://github.com/mathjax/MathJax-demos-node/

The only relevant difference I found between the script above and the related example was the use of mathjax-full instead of the MathJax module obtained with npm i mathjax@3.

In the readme.md linked above, it indeed states that:

Note: this technique is for node-based application only, not for browser applications. This method sets up an alternative DOM implementation, which you don't need in the browser, and tells MathJax to use node's require() command to load external modules. This setup will not work properly in the browser, even if you webpack it or bundle it in other ways.

Does that mean we should use npm i mathjax-node for it to work on browsers, or are both implementations of mathjax-node the same, meaning neither are supposed to work on browsers?

from mathjax-node.

dpvc avatar dpvc commented on June 3, 2024

The MathJax.tex2chtml() function takes a TeX string as its first argument, not a serialized HTML string, so it is processing the HTML tags and other text as mathematics, not HTML. That is why your output includes italics, the dollar signs, and the tag names. See the documentation for more details.

Does that mean we should use npm i mathjax-node for it to work on browsers, or are both implementations of mathjax-node the same, meaning neither are supposed to work on browsers?

The section of the readme you site refers to the use of require('mathjax').init({...}), not to MathJax v3 in general. This technique is a quick way to get MathJax running in node, but it is set up to handle loading of extensions and other MathJax files using node's require() function, and to use the LiteDOM internally, while in-browser use requires a different method for loading extensions, and should use the browser DOM rather than the LiteDOM.

MathJax can be included into node programs in several different ways, and these are illustrated in the different directories in the MathJax-demos-node repository (e.g., component and direct), and these can be used to pre-process math on the server.

This repository for mathjax-node is a v2-only hack that makes it possible to run MathJax v2 in a node application. MathJax v3 was designed to be able to be used directly in node (with the proper configuration), so there is no need for mathjax-node if you are using v3.

from mathjax-node.

nhpf avatar nhpf commented on June 3, 2024

Thank you very much, @dpvc! That was very informative.
I will use this example and try to adapt it for an HTML string instead of a file.

from mathjax-node.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.