We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26483ea commit f9ad788Copy full SHA for f9ad788
src/sphinxcontrib/requirements_txt/directive.py
@@ -88,7 +88,7 @@ def run(self) -> list[Node]:
88
file = os.path.join(os.path.dirname(path), content)
89
fmt = self.options.get("title", self.config["requirements_title"])
90
new_contents = []
91
- for filename in glob(file):
+ for filename in glob(file, recursive=True):
92
title = os.path.basename(filename).split(os.path.extsep)[0]
93
if fmt.find("{title}") >= 0:
94
title = fmt.format(title=title)
0 commit comments