Giter Site home page Giter Site logo

Comments (2)

dainiak avatar dainiak commented on August 14, 2024

Tried to fix this myself, yet internal config v2 parser does not parse things JSON style, so I didn’t manage to make skipStartupTypeset: true and skipStartupTypeset: false both convert smoothly. Currently tried something like:

  identityMap: function(x) {
    return x;
  },

  booleanNegation: function(x) {
    return !x;
  },

  transfer: function (name, mapping=Translate.identityMap) {
    return function (prefix, key, value, config) {
      Translate.checkValue(prefix, key, value) && Translate.set(name, mapping(value), config);
    }
  },

…

skipStartupTypeset: Translate.transfer('startup.typeset', Translate.booleanNegation),

from mathjax-demos-web.

dpvc avatar dpvc commented on August 14, 2024

I've made a PR that fixe this problem (and one with autoNumber) based on your suggestion of adding a transformation function to the transfer() method.

internal config v2 parser does not parse things JSON style

This is because the MathJax v2 config is not JSON (e.g., it can have values that are functions, can have expressions that produce the values, can include comments, and so on). So the parsing ends up being a bit complicated (and a bit fragile as well). It also tries to retain comments that might be in the original when it can.

The value parameters are actually arrays that are made up of two parts: the value of the key (as a string) and the comment that follows if, if any. So your !x was being applied to the array. My PR deals with the array properly.

from mathjax-demos-web.

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.