Images not appearing after "<>"

What I’m trying to do

I am using obsidian for my CS class; I put code snippets in my notes. These code snippets make use of the greater than or lesser than symbols (< and >) and it seems to make image pasting weird after these. It doesn’t matter whether I close it (ex: ) or not, images appear right before the first mention of these symbols within the note but don’t appear a line after. Any solutions, please?

Obsidian thinks you may be opening a HTML tag.

  • You can enclose the entire section in a fenced code block:
```
some text <p some more text

symbols (<and>) and it seems
```
  • You can surround the symbol(s) in backticks to mark it as inline code:
some text `<p` some more text

symbols (`<and>`) and it seems
  • You can escape the symbol(s) with a backslash:
some text \<p some more text

symbols (\<and>) and it seems
2 Likes

Legend! Thanks for your help!

1 Like