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 b5f180c commit f313859Copy full SHA for f313859
src/core/render/compiler/blockquote.js
@@ -22,10 +22,10 @@ export const blockquoteCompiler = ({ renderer }) =>
22
if (firstParagraph.tokens && firstParagraph.tokens.length > 0) {
23
firstParagraph.tokens.forEach(t => {
24
if (t.raw) {
25
- t.raw = t.raw.replace(calloutMark, '').trimStart();
+ t.raw = t.raw.replace(calloutMark, '');
26
}
27
if (t.text) {
28
- t.text = t.text.replace(calloutMark, '').trimStart();
+ t.text = t.text.replace(calloutMark, '');
29
30
});
31
0 commit comments