Skip to content

Commit

Permalink
Merge pull request #532 from antmicro/umarcor/docs/appendix
Browse files Browse the repository at this point in the history
docs: add Appendix (Glossary and References)
  • Loading branch information
kgugala authored Mar 22, 2022
2 parents 6ebcca0 + 243cc59 commit 3f08ecd
Show file tree
Hide file tree
Showing 15 changed files with 720 additions and 442 deletions.
1 change: 1 addition & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/_build/
/env/
/status.inc
1 change: 1 addition & 0 deletions docs/_static/images/hero.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions docs/community.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ Communication
Souces
======

* `github.com/chipsalliance <https://github.com/chipsalliance/?q=f4pga>`__
* :gh:`github.com/chipsalliance <chipsalliance/?q=f4pga>`

* `github.com/F4PGA <https://github.com/F4PGA>`__
* :gh:`github.com/F4PGA <F4PGA>`

.. _Contributing:

Expand Down
18 changes: 17 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,15 @@
release = '' # The full version, including alpha/beta/rc tags.

extensions = [
'sphinx.ext.extlinks',
'sphinx.ext.intersphinx',
'sphinx_verilog_domain'
'sphinx_verilog_domain',
'sphinxcontrib.bibtex',
]

bibtex_default_style = 'plain'
bibtex_bibfiles = ['refs.bib']

numfig = True

templates_path = ['_templates']
Expand Down Expand Up @@ -140,3 +145,14 @@
"prjxray": ("https://f4pga.readthedocs.io/projects/prjxray/en/latest/", None),
"vtr": ("https://docs.verilogtorouting.org/en/latest/", None),
}

# -- Sphinx.Ext.ExtLinks -----------------------------------------------------------------------------------------------

extlinks = {
'wikipedia': ('https://en.wikipedia.org/wiki/%s', 'wikipedia:'),
'gh': ('https://github.com/%s', 'gh:'),
'ghsharp': ('https://github.com/chipsalliance/f4pga/issues/%s', '#'),
'ghissue': ('https://github.com/chipsalliance/f4pga/issues/%s', 'issue #'),
'ghpull': ('https://github.com/chipsalliance/f4pga/pull/%s', 'pull request #'),
'ghsrc': ('https://github.com/chipsalliance/f4pga/blob/master/%s', '')
}
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 3f08ecd

Please sign in to comment.