external_links.py 282 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
"""Definition of external links that can be used in Sphinx as :<key>:`%s`"""

extlinks = {
    # links to Python modules
    'mod-orchestration': (
        'https://github.com/simbricks/simbricks/blob/main/experiments/simbricks/orchestration/%s',
        'orchestration/%s'
    )
}