Skip to content

Commit

Permalink
fixed endline for markdown format
Browse files Browse the repository at this point in the history
  • Loading branch information
fugerit79 committed Dec 19, 2024
1 parent d023f83 commit eba49b8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- fixed endline for markdown format

## [8.11.6] - 2024-12-15

### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public void handlePara(DocPara docPara, DocContainer parent, DocTypeFacadeHelper
// test
this.handleText(docPara.getText(), docPara.getStyle() );
if ( body ) {
this.writer.println( " " ); // endline with two white spaces
this.writer.println( " \n" ); // endline with two white spaces
} else {
this.writer.print( " " );
}
Expand Down

0 comments on commit eba49b8

Please sign in to comment.