mirror of https://github.com/scrapy/scrapy.git
22 lines
605 B
Python
22 lines
605 B
Python
def setup(app):
|
|
app.add_crossref_type(
|
|
directivename = "setting",
|
|
rolename = "setting",
|
|
indextemplate = "pair: %s; setting",
|
|
)
|
|
app.add_crossref_type(
|
|
directivename = "topic",
|
|
rolename = "topic",
|
|
indextemplate = "pair: %s; topic",
|
|
)
|
|
app.add_crossref_type(
|
|
directivename = "signal",
|
|
rolename = "signal",
|
|
indextemplate = "pair: %s; signal",
|
|
)
|
|
app.add_crossref_type(
|
|
directivename = "exception",
|
|
rolename = "exception",
|
|
indextemplate = "pair: %s; exception",
|
|
)
|