Skip to content

Commit aed4789

Browse files
authored
Merge pull request #896 from boriel-basic/docs
Docs
2 parents bd22c73 + 750caf4 commit aed4789

6 files changed

Lines changed: 50 additions & 8 deletions

File tree

.github/workflows/python-app.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,13 @@ name: ZXBasic
55

66
on:
77
push:
8-
branches: [ main ]
8+
branches:
9+
- main
910
pull_request:
10-
branches: [ main ]
11+
branches:
12+
- main
13+
branches-ignore:
14+
- docs
1115

1216
env:
1317
PYTHON_VERSION: 3.12.3

.readthedocs.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ build:
1111
tools:
1212
python: "3.11"
1313

14+
python:
15+
install:
16+
- requirements: ./requirements.txt
17+
1418
# Build documentation in the docs/ directory with mkdocs
1519
mkdocs:
1620
configuration: mkdocs.yml

docs/external_resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ A free IDE created by [Tony Thompson](http://www.users.on.net/~tonyt73). This po
1111
generic 8-bit and 16-bit projects, and can be set up to be used with ZX Basic.
1212
Have a look at the [TommyGun files](https://sourceforge.net/projects/tommygun/files/) page.
1313

14-
To integrate ZX Basic with Tommy Gun, please follow this [tutorial](http://www.boriel.com/forum/viewtopic.php?f=14&t=329&start=0).
14+
To integrate ZX Basic with Tommy Gun, please follow this [tutorial](https://www.boriel.com/forum/showthread.php?tid=110).
1515

1616
### SpectNet IDE
1717
A free and impressive IDE created by [Istvan Novak](https://github.com/Dotneteer).

docs/library/point.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ POINT is a library function to be included with the following command:
1717

1818

1919
```
20-
# include <point.bas>
20+
#include <point.bas>
2121
```
2222

2323
## Sample usage
2424

25-
```basic
26-
# include <point.bas>
25+
```bbcbasic
26+
#include <point.bas>
2727
2828
PLOT 10, 10
2929
PRINT "Point at (10, 10) is "; POINT(10, 10): REM 1

mkdocs.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ theme:
1313
docs_dir: docs
1414

1515
markdown_extensions:
16-
- fenced_code
1716
- tables
18-
17+
- pymdownx.highlight:
18+
anchor_linenums: true
19+
line_spans: __span
20+
pygments_lang_class: true
21+
- pymdownx.inlinehilite
22+
- pymdownx.snippets
23+
- pymdownx.superfences

requirements.txt

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
babel==2.16.0
2+
certifi==2024.8.30
3+
charset-normalizer==3.4.0
4+
click==8.1.7
5+
colorama==0.4.6
6+
ghp-import==2.1.0
7+
idna==3.10
8+
Jinja2==3.1.4
9+
Markdown==3.7
10+
MarkupSafe==3.0.2
11+
mergedeep==1.3.4
12+
mkdocs==1.6.1
13+
mkdocs-get-deps==0.2.0
14+
mkdocs-material==9.5.44
15+
mkdocs-material-extensions==1.3.1
16+
packaging==24.2
17+
paginate==0.5.7
18+
pathspec==0.12.1
19+
platformdirs==4.3.6
20+
Pygments==2.18.0
21+
pymdown-extensions==10.12
22+
python-dateutil==2.9.0.post0
23+
PyYAML==6.0.2
24+
pyyaml_env_tag==0.1
25+
regex==2024.11.6
26+
requests==2.32.3
27+
six==1.16.0
28+
urllib3==2.2.3
29+
watchdog==6.0.0

0 commit comments

Comments
 (0)