Disable markup?

Hi, is there a way to “disable” markup, i.e. treat html/xml code as a regular text? I store examples of code but I cannot see it when reading the note. I have to edit the node to see the code. I just need my xml to be treated as a regular text :slight_smile:

Hi @pawellakomski, welcome to the Supernotes community!

If you wrap your HTML/XML in code block syntax (three backticks (`) above and below the code) it should display it properly. You can even add a language hint for our processor to have syntax highlighting.

It should look like this:

```html
<html>
  <div>my html here</div>
</html>
```

Thanks! :slight_smile: