utf-8 -*- + +import sys +# the workflow package below is download from: +# https://github.com/deanishe/alfred-workflow/releases +from workflow import Workflow, ICON_WEB, web + + +def get_subtitle(item): + content = item.get('content', '') + return content.partition('\n')[0]...