Fix KJ21 on BibleGateway

This commit is contained in:
Jon Tibble 2011-03-14 19:26:38 +00:00
parent 78c539e1d8
commit e1d55575c3
1 changed files with 4 additions and 0 deletions

View File

@ -227,6 +227,10 @@ class BGExtract(object):
cleanup = [(re.compile('\s+'), lambda match: ' ')]
verses = BeautifulSoup(str(soup), markupMassage=cleanup)
verse_list = {}
# Cater for inconsistent mark up in the first verse of a chapter.
first_verse = verses.find(u'versenum')
if first_verse:
verse_list[1] = unicode(first_verse.contents[0])
for verse in verses(u'sup', u'versenum'):
raw_verse_num = verse.next
clean_verse_num = 0