Handle remaining link types.
This commit is contained in:
parent
0073dd8b84
commit
819948e969
1 changed files with 9 additions and 1 deletions
|
@ -116,7 +116,15 @@ def main(src_top, dest_top):
|
|||
links.append({'target': l.value})
|
||||
elif l.value.startswith('attachment:'):
|
||||
pass # Ignore, attachment
|
||||
elif l.value.startswith('* '):
|
||||
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('*'):
|
||||
pass # Ignore, internal
|
||||
elif not ':' in l.value.split()[0]:
|
||||
pass # Ignore, internal
|
||||
elif l.value.startswith('./'):
|
||||
pass # TODO: Properly handle
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue