diff options
author | Georg Brandl <georg@python.org> | 2019-11-24 10:37:41 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2019-11-24 10:37:41 +0100 |
commit | 7a72527427c86045b81e59995382961dba6e22e7 (patch) | |
tree | 6fa92ccd982b0c6aa3a945dd59cdcac8fed17908 | |
parent | bd166a3bb5452efd3a37a52d4847cae96d3d45e2 (diff) | |
download | pygments-git-7a72527427c86045b81e59995382961dba6e22e7.tar.gz |
fix small issues in the docs
-rw-r--r-- | doc/conf.py | 4 | ||||
-rw-r--r-- | doc/docs/index.rst | 11 | ||||
-rw-r--r-- | doc/languages.rst | 6 |
3 files changed, 8 insertions, 13 deletions
diff --git a/doc/conf.py b/doc/conf.py index 5ba0a214..c744b4d1 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -177,7 +177,7 @@ latex_elements = { # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ - ('index', 'Pygments.tex', u'Pygments Documentation', + ('docs/index', 'Pygments.tex', u'Pygments Documentation', u'Pygments authors', 'manual'), ] @@ -207,7 +207,7 @@ latex_documents = [ # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ - ('index', 'pygments', u'Pygments Documentation', + ('docs/index', 'pygments', u'Pygments Documentation', [u'Pygments authors'], 1) ] diff --git a/doc/docs/index.rst b/doc/docs/index.rst index 30d5c085..4cf710f8 100644 --- a/doc/docs/index.rst +++ b/doc/docs/index.rst @@ -50,17 +50,12 @@ Pygments documentation integrate **About Pygments** - + .. toctree:: :maxdepth: 1 changelog authors - -If you find bugs or have suggestions for the documentation, please look -:ref:`here <contribute>` for info on how to contact the team. - -.. XXX You can download an offline version of this documentation from the - :doc:`download page </download>`. - +If you find bugs or have suggestions for the documentation, please submit them +on `GitHub <https://github.com/pygments/pygments>`. diff --git a/doc/languages.rst b/doc/languages.rst index b06ccc55..be886683 100644 --- a/doc/languages.rst +++ b/doc/languages.rst @@ -162,9 +162,9 @@ Other markup ... that's all? --------------- -Well, why not write your own? Contributing to Pygments is easy and fun. Take a look at the -:doc:`docs on lexer development <docs/lexerdevelopment>` and -:ref:`contact details <contribute>`. +Well, why not write your own? Contributing to Pygments is easy and fun. Take a +look at the :doc:`docs on lexer development <docs/lexerdevelopment>`. Pull +requests are welcome on `GitHub <https://github.com/pygments/pygments>`. Note: the languages listed here are supported in the development version. The latest release may lack a few of them. |