Conversation
Co-authored-by: renovate-mike[bot] <274037420+renovate-mike[bot]@users.noreply.github.com>
The annotated string builder has a `when` branch for every inline element and token it expects, but none for GFM INLINE_MATH or BLOCK_MATH nodes. Those fall through to the `else` (which only handles `~`) and contribute nothing, so any text containing a `$...$` or `$$...$$` span is silently truncated. The jetbrains markdown GFM flavour parses the `$100 and $` in "Pay bills $100 and $50" into an INLINE_MATH node, which gets dropped, leaving "Pay bills 50". Reported downstream at tasks/tasks#4577. Append the raw source text of the math node instead. This library does not typeset LaTeX, so showing the source as written is the correct non-destructive behavior, and matches what GitHub renders when math is off. Signed-off-by: Justin Willhite <5132924+thejdubb02@users.noreply.github.com>
Co-authored-by: renovate-mike[bot] <274037420+renovate-mike[bot]@users.noreply.github.com>
Remove double bottom padding from `MarkdownBulletList`
fix: render GFM math spans as text instead of dropping them
- coil 3.5.0 -> 3.6.0 - gradle wrapper 9.7.0 -> 9.7.1 via com.mikepenz:version-catalog 0.19.0 -> 0.20.0: - agp 9.3.1 -> 9.3.2 - compose 1.11.4 -> 1.12.0 - compose-multiplatform 1.11.1 -> 1.12.0 - screenshot 0.0.1-alpha15 -> 0.0.1-alpha16 - aboutLibraries 15.0.4 -> 15.1.1 - versionCatalogUpdate 1.1.0 -> 1.1.1 - stabilityAnalyzer 0.12.0 -> 0.13.0 - composablePreviewScanner 0.9.1 -> 0.9.3 - new jetbrains-compose-ui-test library entry added
chore(deps): update dependencies
Custom image components defined via MarkdownComponents could not reuse the built-in link/alt resolution or tooltip wrapper since they were internal. Fixes #577
|
You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool. What Enabling Code Scanning Means:
For more information about GitHub Code Scanning, check out the documentation. |
mikepenz
enabled auto-merge
August 28, 2026 09:37
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
dev -> main