-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add jekyll include support to docx converter
- Loading branch information
Showing
131 changed files
with
5,777 additions
and
185 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ optimization of implementation classes. Changes are detailed in | |
|
||
### master [![Build status](https://travis-ci.org/vsch/flexmark-java.svg?branch=master)](https://travis-ci.org/vsch/flexmark-java) | ||
|
||
### latest [![Maven Central status](https://img.shields.io/maven-central/v/com.vladsch.flexmark/flexmark.svg)](https://search.maven.org/search?q=g:com.vladsch.flexmark)<!-- @IGNORE PREVIOUS: link --> [![Build status](https://travis-ci.org/vsch/flexmark-java.svg?branch=0.60.2)](https://travis-ci.org/vsch/flexmark-java) [![Javadocs](https://www.javadoc.io/badge/com.vladsch.flexmark/flexmark.svg)](https://www.javadoc.io/doc/com.vladsch.flexmark/flexmark) | ||
### latest [![Maven Central status](https://img.shields.io/maven-central/v/com.vladsch.flexmark/flexmark.svg)](https://search.maven.org/search?q=g:com.vladsch.flexmark)<!-- @IGNORE PREVIOUS: link --> [![Build status](https://travis-ci.org/vsch/flexmark-java.svg?branch=0.61.0)](https://travis-ci.org/vsch/flexmark-java) [![Javadocs](https://www.javadoc.io/badge/com.vladsch.flexmark/flexmark.svg)](https://www.javadoc.io/doc/com.vladsch.flexmark/flexmark) | ||
|
||
<!-- [![codecov](https://codecov.io/gh/vsch/flexmark-java/branch/master/graph/badge.svg)](https://codecov.io/gh/vsch/flexmark-java) --> | ||
|
||
|
@@ -54,7 +54,7 @@ following sample: | |
<dependency> | ||
<groupId>com.vladsch.flexmark</groupId> | ||
<artifactId>flexmark-all</artifactId> | ||
<version>0.60.2</version> | ||
<version>0.61.0</version> | ||
</dependency> | ||
``` | ||
|
||
|
@@ -93,7 +93,7 @@ public class BasicSample { | |
#### Building via Gradle | ||
|
||
```shell | ||
compile 'com.vladsch.flexmark:flexmark-all:0.60.2' | ||
compile 'com.vladsch.flexmark:flexmark-all:0.61.0' | ||
``` | ||
|
||
#### Building with Android Studio | ||
|
@@ -183,7 +183,7 @@ custom node renderer if you need to override the generated link HTML. | |
|
||
### Latest Additions and Changes | ||
|
||
* Major reorganization and code cleanup of implementation in version 0.60.2, see | ||
* Major reorganization and code cleanup of implementation in version 0.61.0, see | ||
[Version-0.60.0-Changes](../../wiki/Version-0.60.0-Changes) | ||
* [Flexmark Architecture and Dependencies Diagrams](https://sourcespy.com/github/flexmark/) | ||
thanks to great work by [Alex Karezin](mailto:[email protected]) you can get an overview | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
...t/src/test/java/com/vladsch/flexmark/core/test/util/renderer/FullOrigSpec029CoreTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package com.vladsch.flexmark.core.test.util.renderer; | ||
|
||
import com.vladsch.flexmark.parser.ParserEmulationProfile; | ||
import com.vladsch.flexmark.test.util.spec.ResourceLocation; | ||
import com.vladsch.flexmark.util.data.DataHolder; | ||
import org.jetbrains.annotations.NotNull; | ||
|
||
final public class FullOrigSpec029CoreTest extends OrigSpecCoreTest { | ||
static final String SPEC_RESOURCE = "/spec.0.29.txt"; | ||
final public static @NotNull ResourceLocation RESOURCE_LOCATION = ResourceLocation.of(SPEC_RESOURCE); | ||
final private static DataHolder OPTIONS = ParserEmulationProfile.COMMONMARK_0_29.getProfileOptions().toImmutable(); | ||
|
||
public FullOrigSpec029CoreTest() { | ||
super(OPTIONS); | ||
} | ||
|
||
@Override | ||
@NotNull | ||
protected ResourceLocation getSpecResourceLocation() { | ||
// FIX: implement 0.29 spec and enable test | ||
//return RESOURCE_LOCATION; | ||
return ResourceLocation.NULL; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.