Skip to content

Conversation

@ianprime0509
Copy link
Contributor

Closes #21358
Closes #21360

This commit modifies the multiline_string_literal_line, doc_comment, and container_doc_comment tokens to no longer include the line ending as part of the token. This makes it easier to handle line endings (which may be LF, CRLF, or in edge cases possibly nonexistent) consistently.

In the two issues linked above, Autodoc was already assuming this for doc comments, and yielding incorrect results when handling files with CRLF line endings (both in Markdown parsing and source rendering).

Applying the same simplification for multiline string literals also brings zig fmt into conformance with
ziglang/zig-spec#38 regarding formatting of multiline strings with CRLF line endings: the spec says that zig fmt should remove the CR from such line endings, but this was not previously the case.

Closes ziglang#21358
Closes ziglang#21360

This commit modifies the `multiline_string_literal_line`, `doc_comment`,
and `container_doc_comment` tokens to no longer include the line ending
as part of the token. This makes it easier to handle line endings (which
may be LF, CRLF, or in edge cases possibly nonexistent) consistently.

In the two issues linked above, Autodoc was already assuming this for
doc comments, and yielding incorrect results when handling files with
CRLF line endings (both in Markdown parsing and source rendering).

Applying the same simplification for multiline string literals also
brings `zig fmt` into conformance with
ziglang/zig-spec#38 regarding formatting of
multiline strings with CRLF line endings: the spec says that `zig fmt`
should remove the CR from such line endings, but this was not previously
the case.
@Vexu Vexu merged commit 9007534 into ziglang:master Sep 10, 2024
@alexrp alexrp mentioned this pull request Sep 10, 2024
RetroDev256 added a commit to RetroDev256/zig that referenced this pull request Sep 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Autodoc: empty lines are being rendered after the each docstring line in the source code page Autodoc: code block is rendered incorrectly

2 participants