Fix plugin-list label in the docs (#8505)
Last time I "fixed" this I left a `\` at the start of the string to avoid an initial newline, but didn't realize it was a raw string. This should fix it now for good.
This commit is contained in:
parent
ca4a7a085e
commit
b96e229c95
|
@ -1,4 +1,4 @@
|
||||||
\
|
|
||||||
.. _plugin-list:
|
.. _plugin-list:
|
||||||
|
|
||||||
Plugin List
|
Plugin List
|
||||||
|
|
|
@ -6,7 +6,7 @@ import packaging.version
|
||||||
import requests
|
import requests
|
||||||
import tabulate
|
import tabulate
|
||||||
|
|
||||||
FILE_HEAD = r"""\
|
FILE_HEAD = r"""
|
||||||
.. _plugin-list:
|
.. _plugin-list:
|
||||||
|
|
||||||
Plugin List
|
Plugin List
|
||||||
|
|
Loading…
Reference in New Issue