Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Seasawher/mathlib4-tactics
List of the output of #help command of mathlib4, including list of all tactics, commands...etc
https://github.com/Seasawher/mathlib4-tactics
lean lean4 reference
Last synced: 3 months ago
JSON representation
List of the output of #help command of mathlib4, including list of all tactics, commands...etc
- Host: GitHub
- URL: https://github.com/Seasawher/mathlib4-tactics
- Owner: Seasawher
- License: apache-2.0
- Created: 2024-04-13T17:30:52.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-10-29T11:30:37.000Z (3 months ago)
- Last Synced: 2024-10-29T13:23:48.259Z (3 months ago)
- Topics: lean, lean4, reference
- Language: Python
- Homepage: https://seasawher.github.io/mathlib4-help/
- Size: 5.08 MB
- Stars: 14
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mathlib4 Help
This is a list of the output of `#help` command of mathlib4. see [GitHub Page](https://seasawher.github.io/mathlib4-help/)!
This is heavily inspired by [haruhisa-enomoto/mathlib4-all-tactics](https://github.com/haruhisa-enomoto/mathlib4-all-tactics).
This web page is automatically updated by GitHub Action.
## How to install dependencies
```pwsh
# activate virtual environment
py -m venv .venv
.venv\Scripts\activate# install dependencies
pip install -r requirements.txt
```## How to generate markdown file
First, install Lean and Python 3.10, and then run the following commands:
```pwsh
./scripts/build.ps1
python3 script.py
```## How to serve website
```pwsh
python -m mkdocs serve
```