Compare commits

...

8 Commits
1.0.0 ... 1.1.0

Author SHA1 Message Date
Robert Winkler
393fd48d2f Release v1.0.0 2016-11-18 12:56:11 +01:00
Robert Winkler
e5aea526cd Updated version to 1.1.0-SNAPSHOT 2016-11-10 12:18:06 +01:00
Robert Winkler
83d3ee5a50 Changed bold to ** and italic to __ so that special chars in the text are possible 2016-11-10 12:17:33 +01:00
Robert Winkler
fec017886f Updated readme 2016-05-02 12:58:08 +02:00
Robert Winkler
6ee11e2876 Updated readme 2016-04-29 14:17:50 +02:00
Robert Winkler
4ba4b962e5 Updated readme 2016-04-29 14:15:15 +02:00
Robert Winkler
71710a4ba6 Updated readme 2016-04-29 14:11:44 +02:00
Robert Winkler
f8bc0d38e7 Updated readme 2016-04-29 14:10:50 +02:00
5 changed files with 16 additions and 14 deletions

View File

@@ -18,4 +18,5 @@
=== Version 0.1.5
* Added SECTION_TITLE_LEVEL4
== Version 1.0.0
== Version 1.1.0
* Changed bold to ** and italic to __ so that special chars in the text are possible

View File

@@ -7,12 +7,12 @@ buildscript {
classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.5.3'
classpath 'org.asciidoctor:asciidoctorj-pdf:1.5.0-alpha.11'
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.0.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.0.0"
}
}
description = 'A Markup (Markdown, AsciiDoc) document builder'
version = '1.0.0'
version = '1.1.0'
group = 'io.github.swagger2markup'
apply plugin: 'java'

View File

@@ -8,10 +8,10 @@ Date buildTimeAndDate = new Date()
ext {
buildDate = new SimpleDateFormat('yyyy-MM-dd').format(buildTimeAndDate)
buildTime = new SimpleDateFormat('HH:mm:ss.SSSZ').format(buildTimeAndDate)
projectUrl = 'https://github.com/RobWin/markup-document-builder'
licenseUrl = 'https://github.com/RobWin/markup-document-builder/blob/master/LICENSE.txt'
scmUrl = 'https://github.com/RobWin/markup-document-builder.git'
issuesUrl = 'https://github.com/RobWin/markup-document-builder/issues'
projectUrl = 'https://github.com/Swagger2Markup/markup-document-builder'
licenseUrl = 'https://github.com/Swagger2Markup/markup-document-builder/blob/master/LICENSE.txt'
scmUrl = 'https://github.com/Swagger2Markup/markup-document-builder.git'
issuesUrl = 'https://github.com/Swagger2Markup/markup-document-builder/issues'
}
task sourcesJar(type: Jar, dependsOn: classes) {
@@ -97,8 +97,9 @@ bintray {
publish = true //If version should be auto published after an upload
publications = ['mavenJava']
pkg {
repo = 'maven'
name = 'swagger2markup'
repo = 'Maven'
name = 'markup-document-builder'
userOrg = 'swagger2markup'
websiteUrl = projectUrl
issueTrackerUrl = issuesUrl
vcsUrl = scmUrl

View File

@@ -30,8 +30,8 @@ public enum AsciiDoc implements Markup {
TITLE("="),
DOCUMENT_TITLE("= "),
LITERAL("`"),
BOLD("*"),
ITALIC("_"),
BOLD("**"),
ITALIC("__"),
LIST_ENTRY("* "),
CROSS_REFERENCE_START("<<"),
CROSS_REFERENCE_END(">>"),

View File

@@ -113,9 +113,9 @@ Passthrough
=== Section Level 2b
text line +
`Literal text line` +
*Bold text line* +
_Italic text line_ +
*bold*_italic_regular +
**Bold text line** +
__Italic text line__ +
**bold**__italic__regular +
* Entry1
* Entry2