Steppschuh / Java-Markdown-Generator

Java library to generate markdown
MIT License
230 stars 47 forks source link

CodeBlock doesn't use system line separator #21

Closed Qworel97 closed 3 years ago

Qworel97 commented 3 years ago
@Override
    public String getSuccessor() {
        return "\n```";
    }

In Table System.lineSeparator() is used, why not use it here also?

Qworel97 commented 3 years ago

Created pull request

Qworel97 commented 3 years ago

@Steppschuh is there any plans for publishing new version in maven central?

Steppschuh commented 3 years ago

No, please refer to #15.

You can however get a release with your changes using:

repositories {
    maven { url 'https://jitpack.io' }
}
dependencies {
    compile 'com.github.Steppschuh:Java-Markdown-Generator:master-SNAPSHOT'
}