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 a98726f commit 61f0a91Copy full SHA for 61f0a91
client.py
@@ -46,8 +46,8 @@ def get_keys(filename, import_base=None):
46
for key in cites:
47
keys |= set(key.split(","))
48
49
- # find inputs and recursively parse them
50
- inputs = re.findall("\\\\input\\{([^\\}]+)\\}", content)
+ # find inputs/include and recursively parse them
+ inputs = re.findall("\\\\(?:input|include)\\{([^\\}]+)\\}", content)
51
for f in inputs:
52
if import_base is not None:
53
f = os.path.join(import_base, f)
0 commit comments