Skip to content

Commit 651b33c

Browse files
committed
🐛 dc tag in table caption
1 parent 76cfc3b commit 651b33c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/dev/ebullient/convert/tools/dnd5e/JsonSource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -745,7 +745,7 @@ default void appendTable(List<String> text, JsonNode tableNode) {
745745
}
746746
if (!caption.isBlank()) {
747747
table.add(0, "");
748-
table.add(0, "**" + caption + "**");
748+
table.add(0, "**" + replaceText(caption) + "**");
749749
}
750750
} finally {
751751
parseState().pop(pushTable);

0 commit comments

Comments
 (0)