The Codebox Escape Bug

The Problem: You put a prompt inside a ```handlebars block. Your prompt contains a ```suggestion block. Suddenly, Quartz renders the rest of your page as raw, broken text. Why? The inner 3 backticks prematurely closed the outer 3 backticks. The codebox β€œbroke through the nesting.”

🧠 The Absolute Idiot-Proof Solution: The N+1 Rule

Markdown parsers are extremely literal. They count backticks (\``). If you open a box with 3, the very next 3` will close it, completely ignoring your intentions.

To nest a code block INSIDE another code block, the OUTER block MUST have more backticks than the inner block.

❌ The Broken Way (3 inside 3)

```handlebars
Here is a prompt. Check out this code:
 
```javascript
console.log("BOOM! The outer block just closed prematurely.");
``` 
<- Everything down here is now broken and un-styled!
```

βœ… The God-Tier Way (3 inside 4)

````handlebars
Here is a prompt. Check out this code:
 
```javascript
console.log("SAFE! The parser ignores these 3 backticks.");
```
Everything stays perfectly contained!

## ⚑ Masterclass Cheat Codes

| Scenario | Inner Code | Outer Code | Status |
| :--- | :--- | :--- | :--- |
| **Normal Code** | *None* | ` ``` ` (3) | 🟒 Safe |
| **Nested Fences** | ` ``` ` (3) | ` ```` ` (4) | 🟒 Safe |
| **Deep Inception** | ` ```` ` (4) | ` ````` ` (5) | 🟒 Safe |
| **Tilde Alternative**| ` ``` ` (3) | ` ~~~ ` (3 tildes) | πŸ”΅ Also Safe |

## πŸ› οΈ The Global OMP Fix
Every file in the `oh-my-proompts` vault has been globally updated to use **4 backticks (` ```` `)** for the outermost `handlebars` wrapper. This mathematically guarantees that any standard 3-backtick block (like code snippets in Agent profiles) will **never** break the SSOT rendering again.

> [!success] Enlightenment Achieved
> 
> You now possess the idiot-proof overstanding of CommonMark parsing. **Count your ticks!**