Skip to content

Commit 47c257c

Browse files
authored
Merge pull request #2566 from Kodiologist/doc-links
Update links to the manual
2 parents f74b5a7 + 727523a commit 47c257c

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

+2-9
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,18 @@ To install the latest release of Hy, just use the command `pip3 install
1616
the command `hy`, or run a Hy program with `hy myprogram.hy`.
1717

1818
Hy is tested on all released and currently maintained versions of CPython (on
19-
Linux and Windows), and on recent versions of PyPy and Pyodide.
19+
Linux, Windows, and Mac OS), and on recent versions of PyPy and Pyodide.
2020

2121
* [The Hy homepage](http://hylang.org)
2222
* [Try Hy with a web console](http://hylang.org/try-hy)
23-
* [Why Hy?](http://docs.hylang.org/en/stable/whyhy.html)
24-
* [Tutorial](http://docs.hylang.org/en/stable/tutorial.html)
2523

2624
Project
2725
-------
2826

2927
* Code: https://github.com/hylang/hy
30-
* Documentation:
31-
* master, for use with the latest revision on GitHub: http://docs.hylang.org/en/master
32-
* stable, for use with the latest release on PyPI: http://docs.hylang.org/en/stable
28+
* Documentation: http://hylang.org/hy/doc
3329
* Bug reports: We have no bugs! Your bugs are your own! (https://github.com/hylang/hy/issues)
3430
* License: MIT (Expat)
35-
* [Hacking on Hy](http://docs.hylang.org/en/master/hacking.html)
36-
* [Contributor Guidelines](http://docs.hylang.org/en/master/hacking.html#contributor-guidelines)
37-
* [Code of Conduct](http://docs.hylang.org/en/master/hacking.html#contributor-code-of-conduct)
3831
* Community: Join us on [Github Discussions](https://github.com/hylang/hy/discussions)!
3932
* [Stack Overflow: The [hy] tag](https://stackoverflow.com/questions/tagged/hy)
4033

docs/_static/custom.css

+7
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,10 @@ a:visited
1313

1414
code
1515
{background-color: #dfd}
16+
17+
.highlight .s
18+
{color: #060}
19+
.highlight .ss
20+
{color: #040}
21+
.highlight .c1
22+
{color: #630}

docs/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Hy is a Lisp dialect that's embedded in Python. Since Hy transforms its Lisp
1414
code into Python abstract syntax tree (AST) objects, you have the whole
1515
beautiful world of Python at your fingertips, in Lisp form.
1616

17-
.. Changes to the below paragraph should be mirrored on Hy's homepage
17+
.. Changes to the below paragraphs should be mirrored on Hy's homepage
1818
and the README.
1919
2020
To install the latest release of Hy, just use the command ``pip3 install

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def run(self):
9191
"Topic :: Software Development :: Libraries",
9292
],
9393
project_urls={
94-
"Documentation": "https://docs.hylang.org/",
94+
"Documentation": "http://hylang.org/hy/doc",
9595
"Source": "https://github.com/hylang/hy",
9696
},
9797
cmdclass={

0 commit comments

Comments
 (0)