Skip to content

Commit c917d18

Browse files
committed
format
1 parent ee98964 commit c917d18

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

docs/customize.md

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -777,21 +777,17 @@ You can configure additional paths for Voilà to search for JupyterLab extension
777777
voila --VoilaConfiguration.extra_labextensions_path="['/path/to/custom/extensions', '/another/path']"
778778
```
779779

780-
Or via the configuration file:
780+
Or via the configuration file (`voila.json`):
781781

782-
```python
783-
# voila.json
782+
```json
784783
{
785-
"VoilaConfiguration": {
786-
"extra_labextensions_path": [
787-
"/path/to/custom/extensions",
788-
"/another/path"
789-
]
790-
}
784+
"VoilaConfiguration": {
785+
"extra_labextensions_path": ["/path/to/custom/extensions", "/another/path"]
786+
}
791787
}
792788
```
793789

794-
Or in a Python configuration file (voila.py):
790+
Or in a Python configuration file (`voila.py`):
795791

796792
```python
797793
c.VoilaConfiguration.extra_labextensions_path = [

0 commit comments

Comments
 (0)