We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 754366d commit c4cac85Copy full SHA for c4cac85
documentation/README.md
@@ -75,15 +75,16 @@ The plugin accepts the following configuration options:
75
#### Examples
76
77
Enable the left sidebar and disable the right sidebar:
78
-
79
- starlightFullViewMode({
80
- leftSidebarEnabled: true,
81
- rightSidebarEnabled: false
82
- })
83
+```js
+starlightFullViewMode({
+ leftSidebarEnabled: true,
+ rightSidebarEnabled: false
+})
+```
84
Enable the right sidebar and disable the left sidebar:
85
86
87
- leftSidebarEnabled: false,
88
- rightSidebarEnabled: true
89
+ leftSidebarEnabled: false,
+ rightSidebarEnabled: true
90
0 commit comments