Skip to content

Commit 1d28993

Browse files
committed
📝 Update readthedocs
1 parent 9ba73a7 commit 1d28993

7 files changed

+19
-79
lines changed

.pre-commit-config.yaml

-9
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,6 @@ repos:
7272
- id: markdownlint-cli2
7373
additional_dependencies:
7474
- markdown-it-texmath
75-
- repo: https://github.com/astral-sh/ruff-pre-commit
76-
rev: v0.7.4
77-
hooks:
78-
- id: ruff
79-
- id: ruff-format
80-
- repo: https://github.com/kumaraditya303/mirrors-pyright
81-
rev: v1.1.389
82-
hooks:
83-
- id: pyright
8475
- repo: https://github.com/lunarmodules/luacheck
8576
rev: v1.2.0
8677
hooks:

.readthedocs.yaml

+3-7
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ build:
99
apt_packages:
1010
- lua-ldoc
1111
- lua-discount
12-
13-
formats:
14-
- htmlzip
15-
16-
python:
17-
install:
18-
- requirements: docs/requirements.txt
12+
commands:
13+
- ldoc .
14+
- mv doc $READTHEDOCS_OUTPUT/html

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ customize it.
6060
See
6161
[![readthedocs](https://shields.io/readthedocs/prompt-stylelua)](https://prompt-stylelua.readthedocs.io).
6262

63-
## REPLs for many programs contains a lua interpreters
63+
## REPLs for many programs containing a lua interpreters
6464

6565
### Lua 5.1/LuaJIT
6666

docs/conf.py

-58
This file was deleted.

docs/index.md

-1
This file was deleted.

docs/requirements.txt

-3
This file was deleted.

shell.nix

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{ pkgs ? import <nixpkgs> { } }:
2+
3+
with pkgs;
4+
mkShell {
5+
name = "prompt-style.lua";
6+
buildInputs = [
7+
(luajit.withPackages (
8+
p: with p; [
9+
luaprompt
10+
ldoc
11+
discount
12+
]
13+
))
14+
];
15+
}

0 commit comments

Comments
 (0)