We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is very similar to #821 and also originates from #90.
When using the CommonMark version 0.30 test cases, the following battery of tests
FSharp.Formatting/tests/FSharp.Markdown.Tests/CommonMarkSpecTest.fs
Lines 47 to 52 in 09491d1
, experience the problem that some of the tests start failing.
The aim would be to ensure that the tests falling under the Fenced code blocks section to pass.
Fenced code blocks
One of the tests is failing as:
Expected string length 26 but was 25. Strings differ at index 9. Expected: "<p><code> </code>\naaa</p>\n" But was: "<p><code></code>\naaa</p>\n"
and this is caused by toCharArray here:
toCharArray
FSharp.Formatting/src/FSharp.Formatting.Markdown/MarkdownParser.fs
Lines 524 to 527 in 09491d1
which is "trimming" the whitespace character.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is very similar to #821 and also originates from #90.
When using the CommonMark version 0.30 test cases, the following battery of tests
FSharp.Formatting/tests/FSharp.Markdown.Tests/CommonMarkSpecTest.fs
Lines 47 to 52 in 09491d1
, experience the problem that some of the tests start failing.
The aim would be to ensure that the tests falling under the
Fenced code blocks
section to pass.One of the tests is failing as:
and this is caused bytoCharArray
here:FSharp.Formatting/src/FSharp.Formatting.Markdown/MarkdownParser.fs
Lines 524 to 527 in 09491d1
which is "trimming" the whitespace character.The text was updated successfully, but these errors were encountered: