# This file shows how the vendor folder has been created.

# Cleanup
(cd /tmp; sudo rm -rf html2text)
rm -r vendor

# html2text
(cd /tmp; git clone git@github.com:freron/html2text.git)
(cd /tmp/html2text; python setup.py build)

mkdir vendor
mv /tmp/html2text/build/lib/html2text vendor/
(cd /tmp/html2text; python setup.py --license) > vendor/html2text-license.txt
#sudo rm -r /tmp/html2text

# This is how to merge with (or fast-forward to) the upstream repository:
#  https://help.github.com/articles/syncing-a-fork/
# cd /tmp/html2text
# git remote add upstream https://github.com/Alir3z4/html2text.git
# git fetch upstream
# git checkout master
# git merge upstream/master
# git status
# git commit ...
# git push
