Update usage guide with inline code mode examples

This commit is contained in:
spencrmartin
2025-10-31 10:20:52 -04:00
parent 33608e961d
commit 09db4807ab
+31
View File
@@ -212,3 +212,34 @@ The live IDE input makes sharing code in chat feel natural and professional. No
**Questions or Issues?**
Check the console logs (they start with `💻 CODE MODE:`) for debugging info.
## 🆕 Update: Inline Code Mode!
You can now use `#language` **anywhere** in your message, not just at the start!
### Examples:
**Before (only worked at start):**
```
#python print("hello")
```
**Now (works inline too!):**
```
Here's the code: #python print("hello")
```
```
Let me show you this function #javascript
const greet = () => console.log("Hi!");
```
```
Check this out #typescript
interface User {
name: string;
}
```
The text before `#language` is preserved and displayed normally, then everything after becomes highlighted code!