Skip to content

Commit 236b3e4

Browse files
committed
Bump v7.6.0
1 parent b0e88e9 commit 236b3e4

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

app/src/test/java/com/philkes/notallyx/data/imports/markdown/MarkdownUtilsTest.kt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,11 @@ class MarkdownUtilsTest {
7777
val (body, spans) = parseBodyAndSpansFromMarkdown(input)
7878

7979
val expectedBody = buildString {
80-
append("Title\n")
80+
append("# Title\n")
8181
append("This has bold, italic, code, strike, and a link.\n")
82-
append("Also an image inline: Alt text and nested bolditalic.\n")
82+
append(
83+
"Also an image inline: ![Alt text](https://example.com/image.png)\n and nested bolditalic.\n"
84+
)
8385
append("Next line.")
8486
}
8587
assertEquals(expectedBody, body)

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ org.gradle.parallel=true
2121
android.experimental.enableNewResourceShrinker.preciseShrinking=true
2222
android.defaults.buildfeatures.buildconfig=true
2323
app.lastVersionName=7.5.3
24-
app.versionCode=7531
24+
app.versionCode=7600
2525
app.versionName=7.6.0

0 commit comments

Comments
 (0)