aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL
diff options
context:
space:
mode:
authorumarcor <unai.martinezcorral@ehu.eus>2022-02-07 19:28:23 +0100
committerumarcor <unai.martinezcorral@ehu.eus>2022-02-07 19:41:40 +0100
commit6a694dd839a18cdf0382753fffc17aa1fbd41f9d (patch)
treee7330a6cd6d87f80d63cc846100175b4817682bf /pyGHDL
parentea18eb25e53567a979d40d6cc2d69e1d3e289c93 (diff)
downloadghdl-6a694dd839a18cdf0382753fffc17aa1fbd41f9d.tar.gz
ghdl-6a694dd839a18cdf0382753fffc17aa1fbd41f9d.tar.bz2
ghdl-6a694dd839a18cdf0382753fffc17aa1fbd41f9d.zip
doc: use extlinks more
Diffstat (limited to 'pyGHDL')
-rw-r--r--pyGHDL/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pyGHDL/__init__.py b/pyGHDL/__init__.py
index bd5e1b8d7..8113f5254 100644
--- a/pyGHDL/__init__.py
+++ b/pyGHDL/__init__.py
@@ -39,12 +39,12 @@ GHDL offers two Python interfaces and a language server protocol service. All
this is provided from a ``pyGHDL`` packages with four sub-packages:
* ``pyGHDL.cli`` - Command line interface (CLI) applications.
-* ``pyGHDL.dom`` - A high-level API offering a document object model (DOM). The underlying abstract VHDL language model is
- provided by `pyVHDLModel <https://github.com/VHDL/pyVHDLModel>`__. The DOM is using ``libghdl`` for file analysis and
- parsing.
+* ``pyGHDL.dom`` - A high-level API offering a document object model (DOM).
+ The underlying abstract VHDL language model is provided by :doc:`pyVHDLModel <vhdlmodel:index>`.
+ The DOM is using ``libghdl`` for file analysis and parsing.
* ``pyGHDL.libghdl`` - A low-level API directly interacting with the shared library ``libghdl....so``/``libghdl....dll``.
This is a procedural and C-like interface. It comes with some Python generators for easier iterating linked lists.
-* ``pyGHDL.lsp`` - A `language server protocol <https://en.wikipedia.org/wiki/Language_Server_Protocol>`__ (LSP)
+* ``pyGHDL.lsp`` - A :wikipedia:`language server protocol <Language_Server_Protocol>` (LSP)
written in Python. The implementation offers an HTTPS service that can be used e.g. by editors and IDEs supporting LSP.
"""
__author__ = "Tristan Gingold and contributors"