# Ps, in the nomadnet version of this site, micron tags are not escaped

_Off-topic · started by Anonymous on Mon, May 4, 2026 10:22 AM_

---

## Original post

**Anonymous** · Mon, May 4, 2026 10:22 AM

In the "Full git nodes over Reticulum - Help testing" thread after r8io reply the formatting of the page gets permanently messed up and gets right aligned after their post and every post there after becomes right aligned instead of left aligned

If it matters; this occurred exactly when there was 18 replies on the most recent nomadnet version at the time of posting

---

## Reply 1

**Anonymous** · Mon, May 4, 2026 3:18 PM

```python
from RNS.Utilities.rngit.util import convert_markdown_to_micron
micron_formatted = convert_markdown_to_micron(markdown_formatted)
```

If you want to go wild and have full syntax highlighting for code blocks, ensure `pygments` is installed on the system and then do:

```python
from RNS.Utilities.rngit.util import MarkdownToMicron
from RNS.Utilities.rngit.highlight import SyntaxHighlighter

converter = MarkdownToMicron(max_width=self.MAX_RENDER_WIDTH, syntax_highlighter=SyntaxHighlighter())
micron_formatted = converter.format_block(markdown_formatted)
```

---

## Reply 2

**Zenith** · Mon, May 4, 2026 9:53 PM

Fixed, sorry about that 

I've also added code highlighting and a few other tweaks.

---

## Reply 3

**Mark** · Mon, May 4, 2026 10:58 PM

Awesome! It's looking very nice now :)

---
