|
13 | 13 | extensions = [
|
14 | 14 | "sphinx.ext.extlinks",
|
15 | 15 | "sphinx.ext.intersphinx",
|
16 |
| - "sphinx.ext.todo", |
17 |
| - "sphinxarg.ext", # Automatic argparse command line argument documentation |
| 16 | + "sphinx.ext.todo" |
18 | 17 | ]
|
19 | 18 |
|
20 | 19 | # The suffix(es) of source filenames.
|
|
24 | 23 |
|
25 | 24 | master_doc = "index"
|
26 | 25 |
|
27 |
| -project = u"Introduction to TDD and CI With VUnit" |
| 26 | +project = u"VUnit: Introduction to TDD and CI" |
28 | 27 | copyright = u"2014-2021, Lars Asplund"
|
29 | 28 | author = u"LarsAsplund and contributors"
|
30 | 29 |
|
|
52 | 51 | "home_breadcrumbs": False,
|
53 | 52 | }
|
54 | 53 |
|
| 54 | +html_context = {} |
55 | 55 | ctx = Path(__file__).resolve().parent / 'context.json'
|
56 | 56 | if ctx.is_file():
|
57 | 57 | html_context.update(loads(ctx.open('r').read()))
|
|
79 | 79 | extlinks = {
|
80 | 80 | "vunit_example": ("https://github.com/VUnit/vunit/tree/master/examples/%s/", ""),
|
81 | 81 | "vunit_file": ("https://github.com/VUnit/vunit/tree/master/%s/", ""),
|
82 |
| - "vunit_commit": ("https://github.com/vunit/vunit/tree/%s/", "@"), |
| 82 | + "vunit_commit": ("https://github.com/VUnit/vunit/tree/%s/", "@"), |
83 | 83 | "vunit_issue": ("https://github.com/VUnit/vunit/issues/%s/", "#"),
|
| 84 | + "tdd_file": ("https://github.com/VUnit/tdd-intro/tree/master/%s/", ""), |
| 85 | + "tdd_commit": ("https://github.com/VUnit/tdd-intro/tree/%s/", "@"), |
| 86 | + "tdd_issue": ("https://github.com/VUnit/tdd-intro/issues/%s/", "#"), |
84 | 87 | }
|
0 commit comments