We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4a0240 commit 985d24bCopy full SHA for 985d24b
test/parser.ts
@@ -129,6 +129,20 @@ describe('FullParser', () => {
129
];
130
assert.deepStrictEqual(mfm.parse(input), output);
131
});
132
+ it('引用ブロックの後ろの空行は無視される', () => {
133
+ const input = `
134
+> foo
135
+> bar
136
+
137
+hoge`;
138
+ const output = [
139
+ QUOTE([
140
+ TEXT('foo\nbar')
141
+ ]),
142
+ TEXT('hoge')
143
+ ];
144
+ assert.deepStrictEqual(mfm.parse(input), output);
145
+ });
146
147
148
describe('search', () => {
0 commit comments