Skip to content

Commit

Permalink
constrain image width
Browse files Browse the repository at this point in the history
  • Loading branch information
IAHM-COL committed Oct 1, 2016
1 parent 3340995 commit fbfb88a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions sources/createwiki-3col.py
Expand Up @@ -13,12 +13,12 @@ def chunks(l, n):

def aircraftItem (name):
"concatenates aircraft information"
sys.stdout.write(''.join(['**',name,'** <br> ![Thumbnail](https://github.com/FGMEMBERS/',name,'/blob/master/thumbnail.jpg) <br> [Development](https://github.com/FGMEMBERS/',name,') <br> [Releases](https://github.com/FGMEMBERS/',name,'/releases)']))
sys.stdout.write(''.join(['**',name,'** <br> <img src="https://github.com/FGMEMBERS/',name,'/blob/master/thumbnail.jpg" width="171"> <br> [Development](https://github.com/FGMEMBERS/',name,') <br> [Releases](https://github.com/FGMEMBERS/',name,'/releases)']))
return

def aircraftItemNonGPL (name):
"concatenates nonGPL aircraft information"
sys.stdout.write(''.join(['**',name,'** <br> ![Thumbnail](https://github.com/FGMEMBERS-NONGPL/',name,'/blob/master/thumbnail.jpg) <br> [Development](https://github.com/FGMEMBERS-NONGPL/',name,') <br> [Releases](https://github.com/FGMEMBERS-NONGPL/',name,'/releases)']))
sys.stdout.write(''.join(['**',name,'** <br> <img src="https://github.com/FGMEMBERS-NONGPL/',name,'/blob/master/thumbnail.jpg" width="171"> <br> [Development](https://github.com/FGMEMBERS-NONGPL/',name,') <br> [Releases](https://github.com/FGMEMBERS-NONGPL/',name,'/releases)']))
return

def tableRow(list):
Expand Down
4 changes: 2 additions & 2 deletions sources/createwiki-4col.py
Expand Up @@ -13,12 +13,12 @@ def chunks(l, n):

def aircraftItem (name):
"concatenates aircraft information"
sys.stdout.write(''.join(['**',name,'** <br> ![Thumbnail](https://github.com/FGMEMBERS/',name,'/blob/master/thumbnail.jpg) <br> [Development](https://github.com/FGMEMBERS/',name,') <br> [Releases](https://github.com/FGMEMBERS/',name,'/releases)']))
sys.stdout.write(''.join(['**',name,'** <br> <img src="https://github.com/FGMEMBERS/',name,'/blob/master/thumbnail.jpg" width="171"> <br> [Development](https://github.com/FGMEMBERS/',name,') <br> [Releases](https://github.com/FGMEMBERS/',name,'/releases)']))
return

def aircraftItemNonGPL (name):
"concatenates nonGPL aircraft information"
sys.stdout.write(''.join(['**',name,'** <br> ![Thumbnail](https://github.com/FGMEMBERS-NONGPL/',name,'/blob/master/thumbnail.jpg) <br> [Development](https://github.com/FGMEMBERS-NONGPL/',name,') <br> [Releases](https://github.com/FGMEMBERS-NONGPL/',name,'/releases)']))
sys.stdout.write(''.join(['**',name,'** <br> <img src="https://github.com/FGMEMBERS-NONGPL/',name,'/blob/master/thumbnail.jpg" width="171"> <br> [Development](https://github.com/FGMEMBERS-NONGPL/',name,') <br> [Releases](https://github.com/FGMEMBERS-NONGPL/',name,'/releases)']))
return

def tableRow(list):
Expand Down

0 comments on commit fbfb88a

Please sign in to comment.