mirror of
https://github.com/marty-oehme/scripts.git
synced 2024-12-22 07:58:08 +00:00
Merge pull request #35 from martokk/patch-1
adding support for .jpeg images
This commit is contained in:
commit
8e19725c92
1 changed files with 2 additions and 2 deletions
|
@ -103,7 +103,7 @@ class File:
|
||||||
|
|
||||||
if self.ext == '.pdf':
|
if self.ext == '.pdf':
|
||||||
self.type = 'pdf'
|
self.type = 'pdf'
|
||||||
elif self.ext in ('.jpg', '.png', '.gif'):
|
elif self.ext in ('.jpg', '.jpeg', '.png', '.gif'):
|
||||||
self.type = 'image'
|
self.type = 'image'
|
||||||
else:
|
else:
|
||||||
self.type = 'other'
|
self.type = 'other'
|
||||||
|
@ -200,4 +200,4 @@ class File:
|
||||||
return '![](file://{})'.format('media/fileicons/' + os.path.basename(self.icon)) + ' ' + \
|
return '![](file://{})'.format('media/fileicons/' + os.path.basename(self.icon)) + ' ' + \
|
||||||
'[{}](file://{})'.format(self.title, link_path)
|
'[{}](file://{})'.format(self.title, link_path)
|
||||||
else:
|
else:
|
||||||
return '[{}](file://{})'.format(self.title, link_path)
|
return '[{}](file://{})'.format(self.title, link_path)
|
||||||
|
|
Loading…
Reference in a new issue