Macroscope needs to be able to see filenames with leading dots.
This commit is contained in:
parent
19311f11dc
commit
0031d37b42
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ class reference:
|
|||
|
||||
class CrossRef:
|
||||
macro_reference = re.compile(r"\{([A-Z_][A-Z0-9_:]*[A-Za-z0-9_])\b")
|
||||
file_reference = re.compile(r"[A-Za-z0-9{}][A-Za-z0-9_/+{}-]*\.(" + "|".join(resource_extensions) + ")")
|
||||
file_reference = re.compile(r"[A-Za-z0-9{}.][A-Za-z0-9_/+{}-]*\.(" + "|".join(resource_extensions) + ")")
|
||||
def imagesearch(self, name):
|
||||
# Here is where we implement the funky rules for image
|
||||
# resolution. If we can't identify a reference to the image
|
||||
|
|
Loading…
Add table
Reference in a new issue