Giter Club home page Giter Club logo

Comments (3)

imfing avatar imfing commented on June 24, 2024

Hi @binLep
Could you please try enabling the passthrough in the Hugo config, as described in the documentation (https://gohugo.io/content-management/mathematics/#step-1)? this may help solve the issue

from hextra.

binLep avatar binLep commented on June 24, 2024

Hi @binLep Could you please try enabling the passthrough in the Hugo config, as described in the documentation (https://gohugo.io/content-management/mathematics/#step-1)? this may help solve the issue

Thanks for your proposal, I have tried, but it seems to have no effect

Hugo's examples are similar to parenthesis-matching scenarios, like this

displayMath: [['\\[', '\\]'], ['$$', '$$']],  // block
inlineMath: [['\\(', '\\)']]                  // inline

The scenario I propose is just a single symbol, including "\&" and "\\".

🥲

from hextra.

imfing avatar imfing commented on June 24, 2024

@binLep with the passthrough enabled, it should work:

example markup setting from hugo.yaml:

markup:
  goldmark:
    renderer:
      unsafe: true
    extensions:
      passthrough:
        delimiters:
          block:
          - - \[
            - \]
          - - $$
            - $$
          inline:
          - - \(
            - \)
        enable: true

result:

image

Hugo's examples are similar to parenthesis-matching scenarios, like this

that's not quite true. the passthrough feature enables the math formula content between $$ to be escaped from Hugo's Markdown engine, so you don't need to explicitly escape \.

from hextra.

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.