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

Don't render @fold:* as blank line when expanded #35

Open
toedter opened this issue Apr 27, 2021 · 0 comments
Open

Don't render @fold:* as blank line when expanded #35

toedter opened this issue Apr 27, 2021 · 0 comments

Comments

@toedter
Copy link

toedter commented Apr 27, 2021

Java code like:

// @fold:on
@Data
@NoArgsConstructor
@AllArgsConstructor
@With
// @fold:off
public class Movie {
    private String id;
    private String title;
}

is currently rendered (folding expanded) like:

@Data
@NoArgsConstructor
@AllArgsConstructor
@With

public class Movie {
    private String id;
    private String title;
}

I prefer if it would be rendered like:

@Data
@NoArgsConstructor
@AllArgsConstructor
@With
public class Movie {
    private String id;
    private String title;
}

What do you think?

@philwebb philwebb added this to the 0.0.x milestone Apr 27, 2021
philwebb pushed a commit to philwebb/spring-asciidoctor-backends that referenced this issue Jul 7, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants