-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[pull] main from jgm:main #23
Conversation
Reviewer's Guide by SourceryThis pull request addresses two issues: the incorrect handling of Updated class diagram for HTML readerclassDiagram
class HTMLReader {
+block()
+pIframe()
+pRawHtmlBlock()
+inline()
+isInlineTag()
}
note for HTMLReader.block "Handles <style> tag by ignoring it (see #10643)"
note for HTMLReader.inline "Handles <style> tag by ignoring it (see #10643)"
note for HTMLReader.isInlineTag "Handles <style> tag by ignoring it (see #10643)"
Updated class diagram for Markdown writerclassDiagram
class MarkdownWriter {
+inlineToMarkdown()
}
note for MarkdownWriter.inlineToMarkdown "Unwraps nested Emph elements (see #10642)"
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
🚨 gitStream Monthly Automation Limit Reached 🚨 Your organization has exceeded the number of pull requests allowed for automation with gitStream. To continue automating your PR workflows and unlock additional features, please contact LinearB. |
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
See Commits and Changes for more details.
Created by
pull[bot] (v2.0.0-alpha.1)
Can you help keep this open source service alive? 💖 Please sponsor : )
Summary by Sourcery
Improve handling of style tags and nested emphasis in HTML reader and Markdown writer.
Bug Fixes:
Enhancements:
<style>
tags by ignoring their content, addressing issue Do not treat<style>
elements in<body>
as a newline jgm/pandoc#10643. This prevents the content of style tags from being parsed as regular HTML, which could lead to unexpected behavior.