Code Monkey home page Code Monkey logo

Comments (3)

valentjn avatar valentjn commented on May 29, 2024

LTEX is not Pandoc, nor it is claiming to support all Pandoc extensions. Converting to feature request.

from ltex-ls.

valentjn avatar valentjn commented on May 29, 2024

It's quite complicated. LTEX LS uses flexmark-java, which requires that all block nodes (such as source code with ``` delimiters, or the custom display math blocks with $$ delimiters) are on their own lines. This means that

$$do not check me$$

should not have been parsed as display math by LTEX LS, as the $$ are not on their own lines. However, due to a bug, LTEX LS ignored everything after the initial $$, so it parsed the example as follows:

[$$ | DISPLAY_MATH_START_DELIMITER][do not check me$$ | IGNORED]

[do not check me | DISPLAY_MATH_CONTENTS]

[$$ | DISPLAY_MATH_END_DELIMITER]
[do not check me | PARAGRAPH_TEXT]
[$$ | DISPLAY_MATH_START_DELIMITER]

Even when fixing this bug, it's not possible to parse the example like Pandoc does due to flexmark-java requiring the block delimiters are on their own lines. However, I implemented a workaround that parses the first display math block as inline math, which has a similar effect for our purposes:

[$ | INLINE_MATH_START_DELIMITER][$do not check me$ | INLINE_MATH_CONTENTS][$ | INLINE_MATH_END_DELIMITER]

[do not check me | PARAGRAPH_TEXT]

[$$ | DISPLAY_MATH_START_DELIMITER]
[do not check me | DISPLAY_MATH_CONTENTS]
[$$ | DISPLAY_MATH_END_DELIMITER]

from ltex-ls.

github-actions avatar github-actions commented on May 29, 2024

This issue is now fixed on develop. The fix will be included in the next release of LTEX.

If you don't want to wait, you can try out the nightly pre-release tomorrow. Nightly pre-releases are published every morning at around 4am UTC.

from ltex-ls.

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.