Try creating a snippet with this content to test language detection:
```javascript const greeting = "Hello World"; console.log(greeting); ```
```python def greet(name): print(f"Hello, {name}!") greet("World") ```
```rust fn main() { println!("Hello, world!"); } ```
```typescript interface User { name: string; age: number; } const user: User = { name: "Alice", age: 30 }; ```
```bash echo "Hello World" ls -la ```
- Create a new snippet with the content above
- Open the snippet to view it
- Press F12 to open Developer Console
- Look for console logs like: "Code block classes: ... Detected language: ..."
- Share what you see in the console logs
This will help identify how the language classes are being set by the markdown renderer.