+
This HTML will be shown as code, not rendered.
+
+ ```
+ ````
+ Or for Markdown:
+ ````markdown
+ ```markdown
+ ## This heading won't render
+ - This list item won't render
+ - It will all appear as code
+ ```
+ ````
+
+#### Code example best practices
+1. **Follow public API patterns** from https://docs.wandb.ai/ref/python/
+2. **Use context managers** for `wandb.init()`
+3. **Include imports** and minimal setup
+4. **Make examples runnable** without additional context
+5. **Test when possible** to ensure correctness
+6. **Avoid placeholder names** like "foo" or "bar" - use meaningful examples
+
+