@@ -342,7 +342,7 @@ if err != nil {
342342
343343Add your command to ` docs/docs/wsh-reference.mdx ` :
344344
345- ``` markdown
345+ ```` markdown
346346## mycommand
347347
348348Brief description of what the command does.
@@ -377,7 +377,7 @@ wsh mycommand -v --name "example" arg1 arg2
377377Additional notes, tips, or warnings about the command.
378378
379379---
380- ```
380+ ````
381381
382382** Documentation Guidelines:**
383383- Place in alphabetical order with other commands
@@ -454,7 +454,7 @@ func versionRun(cmd *cobra.Command, args []string) (rtnErr error) {
454454
455455#### Documentation
456456
457- ``` markdown
457+ ```` markdown
458458## version
459459
460460Print the current Wave Terminal version.
@@ -469,7 +469,7 @@ Examples:
469469# Print version
470470wsh version
471471```
472- ```
472+ ````
473473
474474### Example 2: Command with Flags and RPC
475475
@@ -544,7 +544,7 @@ func setTitleRun(cmd *cobra.Command, args []string) (rtnErr error) {
544544
545545#### Documentation
546546
547- ``` markdown
547+ ```` markdown
548548## settitle
549549
550550Set the title for a block.
@@ -571,7 +571,7 @@ wsh settitle --icon "terminal" "Development Shell"
571571# Set title for specific block
572572wsh settitle -b 2 " Build Output"
573573```
574- ```
574+ ````
575575
576576### Example 3: Subcommands
577577
@@ -645,7 +645,7 @@ func myGroupAddRun(cmd *cobra.Command, args []string) (rtnErr error) {
645645
646646#### Documentation
647647
648- ``` markdown
648+ ```` markdown
649649## mygroup
650650
651651Manage something with subcommands.
@@ -675,7 +675,7 @@ wsh mygroup list
675675# Add an item
676676wsh mygroup add " new-item"
677677```
678- ```
678+ ````
679679
680680## Common Patterns
681681
0 commit comments