Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #54 from omnius-project/0.2.0-development
Browse files Browse the repository at this point in the history
0.2.0 released!
  • Loading branch information
woojiahao authored Apr 5, 2019
2 parents feac836 + 1cf8975 commit 21b7dc3
Show file tree
Hide file tree
Showing 93 changed files with 2,831 additions and 1,262 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@ buildNumber.properties
!/.mvn/wrapper/maven-wrapper.jar

.idea/
*.iml
*.iml

src/main/kotlin/com/github/woojiahao/Sandbox.kt
39 changes: 23 additions & 16 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.github.woojiahao</groupId>
<artifactId>kMD2PDF</artifactId>
<version>0.1.2</version>
<version>0.2.0</version>
<packaging>jar</packaging>

<name>kMD2PDF</name>
Expand Down Expand Up @@ -209,25 +209,19 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-html-jvm</artifactId>
<version>${kotlin.html.version}</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.atlassian.commonmark</groupId>
<artifactId>commonmark</artifactId>
<version>${commonmark.version}</version>
</dependency>

<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>${itextpdf.version}</version>
</dependency>

<dependency>
<groupId>org.xhtmlrenderer</groupId>
<artifactId>flying-saucer-core</artifactId>
Expand Down Expand Up @@ -265,9 +259,15 @@
</dependency>

<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-html-jvm</artifactId>
<version>${kotlin.html.version}</version>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
</dependency>

<dependency>
<groupId>com.atlassian.commonmark</groupId>
<artifactId>commonmark</artifactId>
<version>${commonmark.version}</version>
</dependency>

<dependency>
Expand All @@ -281,6 +281,12 @@
<artifactId>commonmark-ext-gfm-strikethrough</artifactId>
<version>${commonmark.version}</version>
</dependency>

<dependency>
<groupId>com.github.kittinunf.result</groupId>
<artifactId>result</artifactId>
<version>${result.version}</version>
</dependency>
</dependencies>

<properties>
Expand All @@ -294,6 +300,7 @@
<flying.saucer.version>9.1.16</flying.saucer.version>
<apache.commons.version>3.8.1</apache.commons.version>
<kotlin.html.version>0.6.12</kotlin.html.version>
<result.version>2.1.0</result.version>

<plugin.compiler.version>3.5.1</plugin.compiler.version>
<plugin.jar.version>2.6</plugin.jar.version>
Expand Down
8 changes: 8 additions & 0 deletions src/main/kotlin/com/github/woojiahao/FigcaptionSettings.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package com.github.woojiahao

data class FigcaptionSettings(
var isVisible: Boolean = true,
var prepend: String = "Figure",
var append: String = "",
var divider: String = "-"
)
Loading

0 comments on commit 21b7dc3

Please sign in to comment.