Skip to content

Commit eb8d0a4

Browse files
committed
update version in samples
1 parent 5c7f4db commit eb8d0a4

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ than ideal and for pathological input either hangs or practically hangs during p
2020

2121
### master [![Build status](https://travis-ci.org/vsch/flexmark-java.svg?branch=master)](https://travis-ci.org/vsch/flexmark-java)
2222

23-
### 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.50.44)](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)
23+
### 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.50.46)](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)
2424

2525
<!-- [![codecov](https://codecov.io/gh/vsch/flexmark-java/branch/master/graph/badge.svg)](https://codecov.io/gh/vsch/flexmark-java) -->
2626
[![GitQ](https://gitq.com/badge.svg)](https://gitq.com/vsch/flexmark-java)
@@ -48,7 +48,7 @@ following sample:
4848
<dependency>
4949
<groupId>com.vladsch.flexmark</groupId>
5050
<artifactId>flexmark-all</artifactId>
51-
<version>0.50.44</version>
51+
<version>0.50.46</version>
5252
</dependency>
5353
```
5454

@@ -87,7 +87,7 @@ public class BasicSample {
8787
#### Building via Gradle
8888

8989
```shell
90-
compile 'com.vladsch.flexmark:flexmark-all:0.50.44'
90+
compile 'com.vladsch.flexmark:flexmark-all:0.50.46'
9191
```
9292

9393
#### Building with Android Studio

flexmark/src/main/java/com/vladsch/flexmark/parser/internal/LinkDestinationParser.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,12 +209,12 @@ public BasedSequence parseLinkDestination(BasedSequence input, int startIndex) {
209209
lastMatch = nextIndex;
210210
break;
211211
} else if (c == '(') {
212-
if (openJekyllState != 2) {
212+
if (openJekyllState != 2) {
213213
if (allowMatchedParentheses) {
214214
openParenCount++;
215215
} else {
216216
if (openParenCount == 0) {
217-
openParenCount++;
217+
openParenCount++;
218218
} else {
219219
// invalid, parentheses need escaping beyond 1
220220
lastMatch = startIndex;

0 commit comments

Comments
 (0)