#!/usr/bin/env python3
import fileinput
import string
import re
print("* reading CONTRIBUTORS.md")
file = open("../../CONTRIBUTORS.md", "r")
contributorContents = file.read()
file.close()
print("* reading post")
file = open("../../_posts/2017-01-05-all-contributors.md", "r")
webContributorContents = file.read()
file.close()
print("* find fences")
starting_text = ''
ending_text = ''
wCC_start = webContributorContents.find(starting_text) + len(starting_text)
wCC_end = webContributorContents.rfind(ending_text)
starting_text = ''
cC_start = contributorContents.find(starting_text)
cC_end = contributorContents.rfind(ending_text) + len(ending_text)
transformedContributorContents = contributorContents[cC_start:cC_end]
print('* replacing table')
transformedContributorContents = transformedContributorContents.replace('', '', transformedContributorContents, flags=re.IGNORECASE)
transformedContributorContents = re.sub(' *?tbody>', '', transformedContributorContents, flags=re.IGNORECASE)
transformedContributorContents = re.sub(' *?tr>', '', transformedContributorContents, flags=re.IGNORECASE)
transformedContributorContents = re.sub(' *', '', transformedContributorContents, flags=re.IGNORECASE)
transformedContributorContents = re.sub(' *