We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3be489 commit 61200f9Copy full SHA for 61200f9
commonmark-ext-gfm-alerts/src/main/java/org/commonmark/ext/gfm/alerts/internal/AlertPostProcessor.java
@@ -87,6 +87,7 @@ private void tryConvertToAlert(BlockQuote blockQuote) {
87
88
// Valid alert. Create Alert node and transfer children.
89
var alert = new Alert(type);
90
+ alert.setSourceSpans(blockQuote.getSourceSpans());
91
blockQuote.insertAfter(alert);
92
93
// Remove the marker text from the first paragraph
0 commit comments