Skip to content

Commit 7888f23

Browse files
Storage and more fixes (#427)
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Added support for math markdown blocks using LaTeX * Added Common Storage feature for courses * **Documentation** * Added Math Blocks guide (note: duplicated section) and expanded Common Storage setup with step-by-step instructions * Updated changelog and removed one Guides page from navigation * **Chores** * Updated documentation build extensions and deployment workflow; minor formatting and config tweaks <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent ea96fa2 commit 7888f23

15 files changed

Lines changed: 86 additions & 12 deletions

File tree

.coderabbit.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,14 @@ reviews:
2626
- Proper use of rst syntax (e.g., avoid broken links or invalid code blocks).
2727
- Adherence to style guides (e.g., consistent tone, terminology).
2828
Suggest improvements to enhance readability and accessibility.
29+
- Make sure to find all improvements on the first pass.
30+
Go through the material multiple times before submitting comments.
2931
path_filters:
3032
- "!**/*.png"
3133
finishing_touches:
3234
unit_tests:
3335
enabled: false
36+
docstrings:
37+
enabled: false
3438
chat:
3539
auto_reply: true

.github/workflows/deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Setup env
13-
run: pip install sphinx==8.2.0 sphinxawesome-theme==5.3.2 sphinx-docsearch==0.1.0 sphinx-sitemap==2.9.0 sphinx_code_tabs==0.5.5 recommonmark==0.7.1
13+
run: pip install sphinx==8.2.0 sphinxawesome-theme==5.3.2 sphinx-docsearch==0.1.0 sphinx-sitemap==2.9.0 sphinx_code_tabs==0.5.5 sphinx_design==0.6.1
1414

1515
- name: Checkout
16-
uses: actions/checkout@v1
16+
uses: actions/checkout@v4
1717

1818
- name: Build
1919
run: make html

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ If using Codio, put on the certified Python stack `Python Ubuntu 22.04 (pyenv)`.
88
### Install
99

1010
```
11-
pip install sphinx==8.2.0 sphinxawesome-theme==5.3.2 sphinx-docsearch==0.1.0 sphinx-sitemap==2.9.0 sphinx_code_tabs==0.5.5 recommonmark==0.7.1
11+
pip install sphinx==8.2.0 sphinxawesome-theme==5.3.2 sphinx-docsearch==0.1.0 sphinx-sitemap==2.9.0 sphinx_code_tabs==0.5.5 sphinx_design==0.6.1
1212
```
1313

1414
### Build

algolia-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
"lvl5": "main h6",
1919
"text": "main p, main li, main blockquote, main td"
2020
}
21-
}
21+
}

find_unused_images.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1+
#!/usr/bin/env python3
12
'''
23
python find_unused_images.py
34
python find_unused_images.py --delete
45
python find_unused_images.py --delete --yes
56
python find_unused_images.py --debug
67
'''
78

8-
#!/usr/bin/env python3
99
import argparse
1010
import csv
1111
import os

source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@
6565
'sphinx.ext.ifconfig',
6666
'sphinx.ext.viewcode',
6767
'sphinx.ext.githubpages',
68-
'recommonmark',
6968
'sphinx_code_tabs',
69+
'sphinx_design',
7070
'sphinx_sitemap'
7171
]
7272
html_baseurl = 'https://docs.codio.com/'
61.4 KB
Loading
5.21 KB
Loading

source/img/storage-assignment.png

49.6 KB
Loading

source/img/storage-browser.png

53.4 KB
Loading

0 commit comments

Comments
 (0)