mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-25 18:24:30 +00:00
17 lines
457 B
Python
17 lines
457 B
Python
def setup(app):
|
|
app.add_crossref_type(
|
|
directivename = "setting",
|
|
rolename = "setting",
|
|
indextemplate = "pair: %s; setting",
|
|
)
|
|
app.add_crossref_type(
|
|
directivename = "signal",
|
|
rolename = "signal",
|
|
indextemplate = "pair: %s; signal",
|
|
)
|
|
app.add_crossref_type(
|
|
directivename = "command",
|
|
rolename = "command",
|
|
indextemplate = "pair: %s; command",
|
|
)
|