Skip to content

Commit 3f24862

Browse files
authored
Merge pull request #28 from pyscript/fix-links
Fix relative/absolute links
2 parents 85b6371 + 242ace7 commit 3f24862

File tree

4 files changed

+16
-19
lines changed

4 files changed

+16
-19
lines changed

docs/beginning-pyscript.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ We only assume you know how to use a browser and edit text.
1414
!!! note
1515

1616
The easiest way to get a PyScript development environment and hosting, is
17-
to use [pyscript.com](pyscript.com) in your browser.
17+
to use [pyscript.com](https://pyscript.com) in your browser.
1818

1919
It is a free service that helps you create new projects from templates, and
2020
then edit, preview and deploy your apps with a unique link.
2121

22-
While the core features of [pyscript.com](pyscript.com) will always be
22+
While the core features of [pyscript.com](https://pyscript.com) will always be
2323
free, additional paid-for capabilities directly support and sustain the
2424
PyScript open source project. Commercial and educational support is also
2525
available.
@@ -35,10 +35,10 @@ All PyScript applications need three things:
3535
how your application works.
3636

3737
Create these files with your favourite code editor on your local file system.
38-
Alternatively, [pyscript.com](pyscript.com) will take away all the pain of
38+
Alternatively, [pyscript.com](https://pyscript.com) will take away all the pain of
3939
organising, previewing and deploying your application.
4040

41-
If you decide to use [pyscript.com](pyscript.com) (recommended for first
41+
If you decide to use [pyscript.com](https://pyscript.com) (recommended for first
4242
steps), once signed in, create a new project by pressing the "+" button on the
4343
left hand side below the site's logo. You'll be presented with a page
4444
containing three columns (listing your files, showing your code and previewing
@@ -221,22 +221,22 @@ That's it!
221221

222222
### PyScript.com
223223

224-
If you're using [pyscript.com](pyscript.com), you should save all your files
224+
If you're using [pyscript.com](https://pyscript.com), you should save all your files
225225
and click the "run" button. Assuming you've copied the code properly, you
226226
should have a fine old time using "Polyglot 🦜" to translate English to
227227
Pirate-ish.
228228

229229
Alternatively, [click here to see a working example of this app](https://ntoll.pyscriptapps.com/piratical/latest/).
230230
Notice that the bottom right hand corner contains a link to view the code on
231-
[pyscript.com](pyscript.com). Why not explore the code, copy it to your own
231+
[pyscript.com](https://pyscript.com). Why not explore the code, copy it to your own
232232
account and change it to your satisfaction.
233233

234234
### From a web server
235235

236236
Just host the three files (`pyscript.toml`, `index.html`
237237
and `main.py`) in the same directory on a static web server somewhere.
238238

239-
Clearly, we recommend you use [pyscript.com](pyscript.com) for this, but any
239+
Clearly, we recommend you use [pyscript.com](https://pyscript.com) for this, but any
240240
static web host will do (for example,
241241
[GitHub Pages](https://pages.github.com/),
242242
[Amazon's S3](https://docs.aws.amazon.com/AmazonS3/latest/userguide/WebsiteHosting.html),
@@ -252,4 +252,4 @@ needed to build yet more interesting things of your own.
252252

253253
PyScript is extremely powerful, and these beginner steps only just scratch the
254254
surface. To learn about PyScript in more depth, check out
255-
[our user guide](/user-guide).
255+
[our user guide](user-guide.md).

docs/contributing.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Thank you for wanting to contribute to the PyScript project!
44

55
## Code of conduct
66

7-
The [PyScript Code of Conduct](/conduct) governs the project and everyone
7+
The [PyScript Code of Conduct](conduct.md) governs the project and everyone
88
participating in it. By participating, you are expected to uphold this code.
99
Please report unacceptable behavior to the maintainers or administrators as
1010
described in that document.
@@ -123,17 +123,17 @@ git pull upstream main
123123

124124
PyScrcipt welcomes contributions, suggestions, and feedback. All contributions,
125125
suggestions, and feedback you submitted are accepted under the
126-
[Apache 2.0](/license) license. You represent that if you do not own
126+
[Apache 2.0](license.md) license. You represent that if you do not own
127127
copyright in the code that you have the authority to submit it under the
128-
[Apache 2.0](/license) license. All feedback, suggestions, or contributions
128+
[Apache 2.0](license.md) license. All feedback, suggestions, or contributions
129129
are not confidential.
130130

131131
### Becoming a maintainer
132132

133133
Contributors are invited to be maintainers of the project by demonstrating good
134134
decision making in their contributions, a commitment to the goals of the
135135
project, and consistent adherence to the
136-
[code of conduct](./conduft.md). New maintainers are invited by a 3/4 vote of
136+
[code of conduct](conduct.md). New maintainers are invited by a 3/4 vote of
137137
the existing maintainers.
138138

139139
## Trademarks

docs/user-guide.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
While we endeavour to write clearly, some of the content in this user guide
99
will not be suitable for beginners. We assume readers already have Python
1010
or web development experience. If you're a beginner start with our
11-
[beginner's guide](/beginning-pyscript).
11+
[beginner's guide](beginning-pyscript.md).
1212

1313
We [welcome feedback](https://github.com/pyscript/docs/issues) to help us
1414
improve.
@@ -31,7 +31,7 @@ PyScript, you are welcome to contribute via
3131
[the project's GitHub organisation](https://github.com/pyscript).
3232

3333
Finally, the examples listed at the end of this page are all freely available
34-
and copiously commented on [pyscript.com](pyscript.com).
34+
and copiously commented on [pyscript.com](https://pyscript.com).
3535

3636
!!! note
3737

@@ -42,7 +42,7 @@ and copiously commented on [pyscript.com](pyscript.com).
4242

4343
## What is PyScript?
4444

45-
[PyScript](pyscript.net) is a platform for [Python](python.org) in the
45+
[PyScript](https://pyscript.net) is a platform for [Python](https://python.org) in the
4646
[browser](https://en.wikipedia.org/wiki/Web_browser).
4747

4848
PyScript brings together two of the most vibrant technical ecosystems on the
@@ -860,7 +860,7 @@ PyScript uses a feature recently added to web standards called
860860

861861
In order for Atomics to work **you must ensure your web server should enable
862862
the following headers** (this is the default behaviour for
863-
[pyscript.com](pyscript.com)):
863+
[pyscript.com](https://pyscript.com)):
864864

865865
```
866866
Cross-Origin-Opener-Policy: same-origin

version.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)