Disallow admonitions in the middle of a block - #1093
Conversation
|
This is a bug, but it's not obvious what behavior is the correct one. |
```markdown foo **foo** !!! note "Admonition" ``` In the previous state, the "foo" text would be completely obliterated, but now the admonition will be ignored and all of this will be seen as normal text (with inline processing, of course).
|
As the original regex begins with There is also the possibility that existing documents rely on the existing behavior of not requiring a blank line. If we were to suddenly require one, those documents would break. Given the above, this is not the correct way to address this issue. |
In the previous state, the "foo" text would be completely obliterated, but now the admonition will be ignored and all of this will be seen as normal text (with inline processing, of course).