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.
2 parents b6159ab + 529134a commit 71bfed4Copy full SHA for 71bfed4
src/editor/markdown-processors/icon-in-text.ts
@@ -81,7 +81,8 @@ export const processIconInTextMarkdown = (
81
) => {
82
// Ignore if codeblock
83
const codeElement = element.querySelector('pre > code');
84
- if (codeElement) {
+ const callOut = element.querySelector('.callout');
85
+ if (codeElement && !callOut) {
86
return;
87
}
88
0 commit comments