Skip to content

Commit

Permalink
Fix invalid role name
Browse files Browse the repository at this point in the history
Resolves #1851

See sphinx-doc/sphinx#8345 for details
  • Loading branch information
lethosor committed May 11, 2021
1 parent 308c456 commit 001e608
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def all_keybinds_documented():
'bug': ('https://www.bay12games.com/dwarves/mantisbt/view.php?id=%s',
'Bug '),
'source': ('https://github.com/DFHack/dfhack/tree/develop/%s', ''),
'source:scripts': ('https://github.com/DFHack/scripts/tree/master/%s', ''),
'source-scripts': ('https://github.com/DFHack/scripts/tree/master/%s', ''),
'issue': ('https://github.com/DFHack/dfhack/issues/%s', 'Issue '),
'commit': ('https://github.com/DFHack/dfhack/commit/%s', 'Commit '),
}
Expand Down
2 changes: 1 addition & 1 deletion docs/Core.rst
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ the root DF folder.

.. admonition:: Tip

When developing scripts in the :source:scripts:`dfhack/scripts repo <>`,
When developing scripts in the :source-scripts:`dfhack/scripts repo <>`,
it may be useful to add the path to your local copy of the repo with ``+``.
This will allow you to make changes in the repo and have them take effect
immediately, without needing to re-install or copy scripts over manually.
Expand Down
2 changes: 1 addition & 1 deletion docs/Lua API.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4405,7 +4405,7 @@ the extension omitted. For example:
Scripts can also be placed in other folders - by default, these include
:file:`raw/scripts` and :file:`data/save/{region}/raw/scripts`, but additional
folders can be added (for example, a copy of the
:source:scripts:`scripts repository <>` for local development). See
:source-scripts:`scripts repository <>` for local development). See
`script-paths` for more information on how to configure this behavior.

If the first line of the script is a one-line comment (starting with ``--``),
Expand Down
2 changes: 1 addition & 1 deletion docs/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ changelog.txt uses a syntax similar to RST, with a few special sequences:
- ``utils.processArgsGetopt()``: now returns negative numbers (e.g. ``-10``) in the list of positional parameters instead of treating it as an option string equivalent to ``-1 -0``
- ``utils.processArgsGetopt()``: now properly handles ``--`` like GNU ``getopt`` as a marker to treat all further parameters as non-options
- ``utils.processArgsGetopt()``: now detects when required arguments to long-form options are missing
- `xlsxreader`: Added Lua class wrappers for the xlsxreader plugin API
- `xlsxreader`: added Lua class wrappers for the xlsxreader plugin API

## Documentation
- Added more client library implementations to the `remote interface docs <remote-client-libs>`
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/quickfort-user-guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1564,7 +1564,7 @@ Links
- :source:`Quickfort blueprints library <data/blueprints/library>`
- :forums:`Quickfort forum thread <176889>`
- :issue:`DFHack issue tracker <>`
- :source:scripts:`Quickfort source code <internal/quickfort>`
- :source-scripts:`Quickfort source code <internal/quickfort>`

**Related tools:**

Expand Down

0 comments on commit 001e608

Please sign in to comment.