Skip to content
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

fix(theme): Fix code block magic comments with CRLF line breaks bug #11046

Merged
merged 2 commits into from
Apr 1, 2025

Conversation

coder-xiaomo
Copy link
Contributor

Pre-flight checklist

  • I have read the Contributing Guidelines on pull requests.
  • If this is a code change: I have written unit tests and/or added dogfooding pages to fully verify the new behavior.
  • If this is a new API or substantial change: the PR has an accompanying issue (closes #0000) and the maintainers have approved on my working plan.

Motivation

fix: with CRLF line breaks, an extra empty line was rendered with // highlight-end at end of code blocks

Test Plan

Related issues/PRs

See: #11036

@facebook-github-bot
Copy link
Contributor

Hi @coder-xiaomo!

Thank you for your pull request and welcome to our community.

Action Required

In order to merge any pull request (code, docs, etc.), we require contributors to sign our Contributor License Agreement, and we don't seem to have one on file for you.

Process

In order for us to review and merge your suggested changes, please sign at https://code.facebook.com/cla. If you are contributing on behalf of someone else (eg your employer), the individual CLA may not be sufficient and your employer may need to sign the corporate CLA.

Once the CLA is signed, our tooling will perform checks and validations. Afterwards, the pull request will be tagged with CLA signed. The tagging process may take up to 1 hour after signing. Please give it that time before contacting us about it.

If you have received this in error or have any questions, please contact us at [email protected]. Thanks!

Copy link

netlify bot commented Mar 29, 2025

[V2]

Name Link
🔨 Latest commit 17d38d5
🔍 Latest deploy log https://app.netlify.com/sites/docusaurus-2/deploys/67ebe1c7cd496b0008aa6dfc
😎 Deploy Preview https://deploy-preview-11046--docusaurus-2.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

github-actions bot commented Mar 29, 2025

⚡️ Lighthouse report for the deploy preview of this PR

URL Performance Accessibility Best Practices SEO Report
/ 🔴 44 🟢 98 🟢 100 🟢 100 Report
/docs/installation 🔴 49 🟢 97 🟢 100 🟢 100 Report
/docs/category/getting-started 🟠 72 🟢 100 🟢 100 🟠 86 Report
/blog 🟠 60 🟢 96 🟢 100 🟠 86 Report
/blog/preparing-your-site-for-docusaurus-v3 🟠 64 🟢 92 🟢 100 🟢 100 Report
/blog/tags/release 🟠 63 🟢 96 🟢 100 🟠 86 Report
/blog/tags 🟠 73 🟢 100 🟢 100 🟠 86 Report

@facebook-github-bot facebook-github-bot added the CLA Signed Signed Facebook CLA label Mar 29, 2025
@facebook-github-bot
Copy link
Contributor

Thank you for signing our Contributor License Agreement. We can now accept your code for this (and any) Meta Open Source project. Thanks!

@slorber
Copy link
Collaborator

slorber commented Mar 31, 2025

LGTM thanks

Can you add a unit test for it in docusaurus/packages/docusaurus-theme-common/src/utils/__tests__/codeBlockUtils.test.ts?

(if you don't know how, tell me and I can do it for you)

@slorber slorber added the pr: bug fix This PR fixes a bug in a past release. label Mar 31, 2025
@coder-xiaomo
Copy link
Contributor Author

@slorber Okay, I've written the following test case with reference to other test cases. However, this issue requires both code block highlighting comment // highlight-end and CRLF to be satisfied simultaneously. I'm not sure if this test case can accurately describe this situation:

// add to `describe('parseLines')` part

it('handles CRLF line breaks with highlight comments correctly', () => {
    const defaultMagicComments: MagicCommentConfig[] = [
        {
            className: 'theme-code-block-highlighted-line',
            line: 'highlight-next-line',
            block: { start: 'highlight-start', end: 'highlight-end' }
        }
    ];

    expect(
        parseLines(`// highlight-start aaaaa\r\nbbbbb\r\n// highlight-end`, {
            metastring: '',
            language: 'js',
            magicComments: defaultMagicComments
        })
    ).toMatchSnapshot();
});

@slorber
Copy link
Collaborator

slorber commented Apr 1, 2025

Yes it should be fine.

I've added the tests needed based on your proposal above, also adding one for the highlight metastring range {2} syntax which was impacted by your change through a different code path.

Good to merge thanks 👍

@slorber slorber linked an issue Apr 1, 2025 that may be closed by this pull request
7 tasks
@slorber slorber changed the title fix: with CRLF line breaks, an extra empty line was rendered with // highlight-end at end of code blocks fix(theme): Fix code block magic comments with CRLF line breaks bug Apr 1, 2025
@slorber slorber merged commit 3176a2c into facebook:main Apr 1, 2025
38 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CLA Signed Signed Facebook CLA pr: bug fix This PR fixes a bug in a past release.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

extra empty line was rendered with // highlight-end at end of code blocks
4 participants