summaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/blog/md/ext/NoteBlocks.kt
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2024-05-03 00:02:29 +0200
committerLinnea Gräf <nea@nea.moe>2024-05-03 00:02:29 +0200
commit1b563a0378998f2fed28bf81b8e254cb47742503 (patch)
tree0ab727813c2150b8293ebcd3d16bfe5ea4e25562 /src/main/kotlin/moe/nea/blog/md/ext/NoteBlocks.kt
parent7e24b934bbd424669a1c935894dd8799d4db0348 (diff)
downloadblog-infra-1b563a0378998f2fed28bf81b8e254cb47742503.tar.gz
blog-infra-1b563a0378998f2fed28bf81b8e254cb47742503.tar.bz2
blog-infra-1b563a0378998f2fed28bf81b8e254cb47742503.zip
Improve paragraph detectionHEADmaster
Diffstat (limited to 'src/main/kotlin/moe/nea/blog/md/ext/NoteBlocks.kt')
-rw-r--r--src/main/kotlin/moe/nea/blog/md/ext/NoteBlocks.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/moe/nea/blog/md/ext/NoteBlocks.kt b/src/main/kotlin/moe/nea/blog/md/ext/NoteBlocks.kt
index a1f977f..6d13063 100644
--- a/src/main/kotlin/moe/nea/blog/md/ext/NoteBlocks.kt
+++ b/src/main/kotlin/moe/nea/blog/md/ext/NoteBlocks.kt
@@ -13,7 +13,7 @@ import java.io.PrintStream
data class NoteBlock(val noteType: String, val child: MarkdownBlock) : MarkdownBlock {
override fun debugFormat(indent: Int, printStream: PrintStream) {
printStream.indent(indent)
- printStream.println("<note type=\"$noteType\">")
+ printStream.println("<note type=$noteType>")
child.debugFormat(indent + 2, printStream)