Handle remaining link types.
This commit is contained in:
parent
0073dd8b84
commit
819948e969
@ -116,8 +116,16 @@ def main(src_top, dest_top):
|
|||||||
links.append({'target': l.value})
|
links.append({'target': l.value})
|
||||||
elif l.value.startswith('attachment:'):
|
elif l.value.startswith('attachment:'):
|
||||||
pass # Ignore, attachment
|
pass # Ignore, attachment
|
||||||
|
elif l.value.startswith('file:'):
|
||||||
|
pass # Ignore, attachment
|
||||||
|
elif l.value.startswith('notmuch:'):
|
||||||
|
pass # Ignore, mail
|
||||||
|
elif l.value.startswith('orgit-rev:'):
|
||||||
|
pass # Ignore, mail
|
||||||
elif l.value.startswith('*'):
|
elif l.value.startswith('*'):
|
||||||
pass # Ignore, internal
|
pass # Ignore, internal
|
||||||
|
elif not ':' in l.value.split()[0]:
|
||||||
|
pass # Ignore, internal
|
||||||
elif l.value.startswith('./'):
|
elif l.value.startswith('./'):
|
||||||
pass # TODO: Properly handle
|
pass # TODO: Properly handle
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user