Skip to content

Added Badges to README.md #26

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

Merged
merged 1 commit into from
Oct 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ I was looking for a simple static site blog generator. Jekyll and others were to

Besides this, I wanted to streamline my content creation workflows by letting the program do the heavy lifting in looking for information that is required for the resulting blog post.

## Status

|Service|Status|
|-|-|
|Qodana check|[![Qodana](https://github.com/tscholze/kotlin-kotlog-cli/actions/workflows/code_quality.yml/badge.svg)](https://github.com/tscholze/kotlin-kotlog-cli/actions/workflows/code_quality.yml)|
|Gradle build|[![Build](https://github.com/tscholze/kotlin-kotlog-cli/actions/workflows/build.yml/badge.svg)](https://github.com/tscholze/kotlin-kotlog-cli/actions/workflows/build.yml)|
## Structure
- `__posts/` - contains all Markdown posts that will be rendered
- `__styles/` - contains all static style files that has to be embedded
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class SocialMediaPreviewImage {
* Generates a preview image from given post configuration
*
* @param postConfiguration Given configuration
* @param outputDirectoryName Output directy name
* @param outputDirectoryName Output directly name
*/
fun generate(postConfiguration: PostConfiguration, outputDirectoryName: String) {

Expand Down