Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
393fd48d2f | ||
|
|
e5aea526cd | ||
|
|
83d3ee5a50 | ||
|
|
fec017886f | ||
|
|
6ee11e2876 | ||
|
|
4ba4b962e5 | ||
|
|
71710a4ba6 | ||
|
|
f8bc0d38e7 |
@@ -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
|
||||
@@ -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'
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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(">>"),
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user