From 2ae00fbbf2f88da9163b512b1f1205e18499ab9e Mon Sep 17 00:00:00 2001
From: Titus Wormer foo foo
".to_string());
}
+/// Handle [`Exit`][EventType::Exit]:[`BlankLineEnding`][Token::BlankLineEnding].
+fn on_exit_blank_line_ending(context: &mut CompileContext) {
+ if context.index == context.events.len() - 1 {
+ context.line_ending_if_needed();
+ }
+}
+
/// Handle [`Exit`][EventType::Exit]:[`BlockQuote`][Token::BlockQuote].
fn on_exit_block_quote(context: &mut CompileContext) {
context.tight_stack.pop();
context.line_ending_if_needed();
+ context.slurp_one_line_ending = false;
context.tag("".to_string());
}
diff --git a/tests/commonmark.rs b/tests/commonmark.rs
index cec6116..1843a51 100644
--- a/tests/commonmark.rs
+++ b/tests/commonmark.rs
@@ -2623,18 +2623,17 @@ bar
r###"Link reference definitions (216)"###
);
- // To do: eol after definition in otherwise empty block quote.
-// assert_eq!(
-// micromark_with_options(r###"[foo]
+ assert_eq!(
+ micromark_with_options(r###"[foo]
-// > [foo]: /url
-// "###, DANGER),
-// r###"
-//
-//
-// "###,
-// r###"Link reference definitions (217)"###
-// );
+> [foo]: /url
+"###, DANGER),
+ r###"
+
+
+"###,
+ r###"Link reference definitions (217)"###
+);
assert_eq!(
micromark_with_options(r###"aaa
@@ -2896,40 +2895,37 @@ foo
// r###"Block quotes (237)"###
// );
- // To do: some eol in empty block quote bug.
- // assert_eq!(
- // micromark_with_options(r###">
- // "###, DANGER),
- // r###"
- //
- // "###,
- // r###"Block quotes (238)"###
- // );
+ assert_eq!(
+ micromark_with_options(r###">
+"###, DANGER),
+ r###"
+
+"###,
+ r###"Block quotes (238)"###
+);
- // To do: some eol in empty block quote bug.
- // assert_eq!(
- // micromark_with_options(r###">
- // >
- // >
- // "###, DANGER),
- // r###"
- //
- // "###,
- // r###"Block quotes (239)"###
- // );
+ assert_eq!(
+ micromark_with_options(r###">
+>
+>
+"###, DANGER),
+ r###"
+
+"###,
+ r###"Block quotes (239)"###
+);
- // To do: some eol in empty block quote bug.
- // assert_eq!(
- // micromark_with_options(r###">
- // > foo
- // >
- // "###, DANGER),
- // r###"
- //
- // "###,
- // r###"Block quotes (240)"###
- // );
+ assert_eq!(
+ micromark_with_options(r###">
+> foo
+>
+"###, DANGER),
+ r###"
+
+"###,
+ r###"Block quotes (240)"###
+);
assert_eq!(
micromark_with_options(r###"> foo
@@ -2999,7 +2995,7 @@ bar