hey everyone! does anyone have a preferred way of nicely structuring code commands with short descriptions? it's a use case i often find myself in. here's an example of what i do today:
Copy code
## Kubernetes
- get deployments: `kubectl get deployments`
- get pods: `kubectl get pods`
- describe a pod: `kubectl describe pod <name>`
- get logs: `kubectl logs <podName>`