-
Notifications
You must be signed in to change notification settings - Fork 105
Various, minor, grammar changes and fixes #655
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
AoifeHughes
wants to merge
10
commits into
main
Choose a base branch
from
ah-grammar
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 6 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
03b1b6f
British Eng "z" -> "s"
8eb9d6e
misc grammar and double word fixes
13939b5
an fixes
1191c62
a million little grammar rewrites
a9d5ef9
more British-isms and grammar changes
2a73b0a
Grammar, plus added back and more links (mostly wiki)
d98fdb0
reluctantly changing license to match original file
96faf58
gross, the library itself uses American spelling.
94e1a6f
Fix license link in footer from 'LICENCE' to 'LICENSE'
0c7f940
fixed whitespace
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,4 +28,5 @@ venv | |
site_libs | ||
.DS_Store | ||
index_files | ||
digest.txt | ||
digest.txt | ||
*.bak |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,106 +1,105 @@ | ||
# Turing.jl Documentation and Tutorials | ||
|
||
**https://turinglang.org/docs/** | ||
**https://turinglang.org/docs/** | ||
|
||
## Contributing | ||
## Contributing | ||
|
||
The easiest way to contribute to the documentation is to simply open a pull request. | ||
A preview version of the documentation is built for PRs, so you can see how your changes look without having to build the entire site locally. | ||
(Note that if you are editing a tutorial that takes a long time to run, this feedback may take a while.) | ||
The easiest way to contribute to the documentation is to simply open a pull request. | ||
A preview version of the documentation is built for pull requests, so you can see how your changes look without having to build the entire site locally. | ||
(Note that if you are editing a tutorial that takes a long time to run, this feedback may take a while.) | ||
|
||
The `main` branch contains the Quarto source code. | ||
The HTML documentation is automatically built using GitHub Actions, and deployed to the `gh-pages` branch, so you do not have to build and commit the HTML files yourself. | ||
The `main` branch contains the Quarto source code. | ||
The HTML documentation is automatically built using GitHub Actions, and deployed to the `gh-pages` branch, so you do not have to build and commit the HTML files yourself. | ||
|
||
## Local development | ||
## Local development | ||
|
||
If you wish to render the docs website locally, you'll need to have [Quarto](https://quarto.org/docs/download/) installed (at least version 1.6.31) on your computer. | ||
Then: | ||
If you wish to render the docs website locally, you'll need to have [Quarto](https://quarto.org/docs/download/) installed (at least version 1.6.31) on your computer. | ||
Then: | ||
|
||
1. Clone this repository: | ||
1. Clone this repository: | ||
|
||
```bash | ||
git clone https://github.com/TuringLang/docs | ||
``` | ||
``` | ||
|
||
2. Navigate into the cloned directory: | ||
2. Navigate into the cloned directory: | ||
|
||
```bash | ||
cd docs | ||
``` | ||
``` | ||
|
||
3. Instantiate the project environment: | ||
3. Instantiate the project environment: | ||
|
||
```bash | ||
julia --project=. -e 'using Pkg; Pkg.instantiate()' | ||
``` | ||
``` | ||
|
||
4. Preview the website using Quarto. | ||
4. Preview the website using Quarto. | ||
|
||
> [!WARNING] | ||
> This will take a _very_ long time, as it will build every tutorial from scratch. See [below](#faster-rendering) for ways to speed this up. | ||
> [!WARNING] | ||
> This will take a _very_ long time, as it will build every tutorial from scratch. See [below](#faster-rendering) for ways to speed this up. | ||
|
||
```bash | ||
quarto preview | ||
``` | ||
``` | ||
|
||
This will launch a local server at http://localhost:4200/, which you can view in your web browser by navigating to the link shown in your terminal. | ||
This will launch a local server at http://localhost:4200/, which you can view in your web browser by navigating to the link shown in your terminal. | ||
|
||
5. Render the website locally: | ||
5. Render the website locally: | ||
|
||
```bash | ||
quarto render | ||
``` | ||
``` | ||
|
||
This will build the entire documentation and place the output in the `_site` folder. | ||
You can then view the rendered website by launching a HTTP server from that directory, e.g. using Python: | ||
This will build the entire documentation and place the output in the `_site` folder. | ||
You can then view the rendered website by launching an HTTP server from that directory, e.g. using Python: | ||
|
||
```bash | ||
cd _site | ||
python -m http.server 8000 | ||
``` | ||
``` | ||
|
||
Then, navigate to http://localhost:8000/ in your web browser. | ||
Then, navigate to http://localhost:8000/ in your web browser. | ||
|
||
## Faster rendering | ||
## Faster rendering | ||
|
||
Note that rendering the entire documentation site can take a long time (usually multiple hours). | ||
If you wish to speed up local rendering, there are two options available: | ||
Note that rendering the entire documentation site can take a long time (usually multiple hours). | ||
If you wish to speed up local rendering, there are two options available: | ||
|
||
1. Render a single tutorial or `qmd` file without compiling the entire site. | ||
To do this, pass the `qmd` file as an argument to `quarto render`: | ||
1. Render a single tutorial or `qmd` file without compiling the entire site. | ||
To do this, pass the `qmd` file as an argument to `quarto render`: | ||
|
||
``` | ||
quarto render path/to/index.qmd | ||
``` | ||
|
||
(Note that `quarto preview` does not support this single-file rendering.) | ||
``` | ||
(Note that `quarto preview` does not support this single-file rendering.) | ||
|
||
2. Download the most recent `_freeze` folder from the [GitHub releases of this repo](https://github.com/turinglang/docs/releases), and place it in the root of the project. | ||
The `_freeze` folder stores the cached outputs from a previous build of the documentation. | ||
If it is present, Quarto will reuse the outputs of previous computations for any files for which the source is unchanged. | ||
2. Download the most recent `_freeze` folder from the [GitHub releases of this repo](https://github.com/turinglang/docs/releases), and place it in the root of the project. | ||
The `_freeze` folder stores the cached outputs from a previous build of the documentation. | ||
If it is present, Quarto will reuse the outputs of previous computations for any files for which the source is unchanged. | ||
|
||
Note that the validity of a `_freeze` folder depends on the Julia environment that it was created with, because different package versions may lead to different outputs. | ||
In the GitHub release, the `Manifest.toml` is also provided, and you should also download this and place it in the root directory of the docs. | ||
Note that the validity of a `_freeze` folder depends on the Julia environment that it was created with, because different package versions may lead to different outputs. | ||
In the GitHub release, the `Manifest.toml` is also provided, and you should also download this and place it in the root directory of the docs. | ||
|
||
If there isn't a suitably up-to-date `_freeze` folder in the releases, you can generate a new one by [triggering a run for the `create_release.yml` workflow](https://github.com/TuringLang/docs/actions/workflows/create_release.yml). | ||
(You will need to have the appropriate permissions; please create an issue if you need help with this.) | ||
If there isn't a suitably up-to-date `_freeze` folder in the releases, you can generate a new one by [triggering a run for the `create_release.yml` workflow](https://github.com/TuringLang/docs/actions/workflows/create_release.yml) (You will need to have the appropriate permissions; please create an issue if you need help with this). | ||
|
||
## Troubleshooting build issues | ||
## Troubleshooting build issues | ||
|
||
As described in the [Quarto docs](https://quarto.org/docs/computations/julia.html#using-the-julia-engine), Quarto's Julia engine uses a worker process behind the scenes. | ||
Sometimes this can result in issues with old package code not being unloaded (e.g. when package versions are upgraded). | ||
If you find that Quarto's execution is failing with errors that aren't reproducible via a normal REPL, try adding the `--execute-daemon-restart` flag to the `quarto render` command: | ||
As described in the [Quarto docs](https://quarto.org/docs/computations/julia.html#using-the-julia-engine), Quarto's Julia engine uses a worker process behind the scenes. | ||
Sometimes this can result in issues with old package code not being unloaded (e.g. when package versions are upgraded). | ||
If you find that Quarto's execution is failing with errors that aren't reproducible via a normal REPL, try adding the `--execute-daemon-restart` flag to the `quarto render` command: | ||
|
||
```bash | ||
quarto render /path/to/index.qmd --execute-daemon-restart | ||
``` | ||
``` | ||
|
||
And also, kill any stray Quarto processes that are still running (sometimes it keeps running in the background): | ||
And also, kill any stray Quarto processes that are still running (sometimes it keeps running in the background): | ||
|
||
```bash | ||
pkill -9 -f quarto | ||
``` | ||
``` | ||
|
||
## License | ||
## Licence | ||
|
||
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. | ||
This project is licensed under the MIT Licence - see the [Licence](Licence) file for details. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this file just getting a lot of trailing whitespace added, or am I missing something?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, I was having weird markdown rendering for me, so I assumed it was some kind of needing extra space. Fixed in last commit.