From b86be87c61304e149a27c85c4cc86e6c67df18de Mon Sep 17 00:00:00 2001 From: Alistair Magee Date: Sat, 1 Feb 2014 18:21:56 +0000 Subject: [PATCH] fixed typos in README --- clean_summary/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/clean_summary/README.md b/clean_summary/README.md index d7572b4..b82f9c2 100644 --- a/clean_summary/README.md +++ b/clean_summary/README.md @@ -9,26 +9,26 @@ There is also an option to include a minimum of one image. ##Settings## -plugin has two settings. `CLEAN_SUMMARY_MAXIMUM` which takes an int, and -`CLEAN_SUMMARY_MINIMUM_ONE` which takes a boolean. They deafult to 0 and False. +This plugin has two settings. `CLEAN_SUMMARY_MAXIMUM` which takes an int, and +`CLEAN_SUMMARY_MINIMUM_ONE` which takes a boolean. They default to 0 and False. `CLEAN_SUMMARY_MAXIMUM` sets the maximum number of images that will appear in your summary. if `CLEAN_SUMMARY_MINIMUM_ONE` is set to `True` and your summary doesn't already -contain an image, the plugin will add the first image in your article(if one +contain an image, the plugin will add the first image in your article (if one exists) to the beginning of the summary. ##Requirements## -requires Beautiful Soup +Requires Beautiful Soup: pip install BeautifulSoup4 ##Usage with Summary Plugin## -if using the summary plugin, make sure summary appears in your plugins before +If using the summary plugin, make sure summary appears in your plugins before clean summary. Eg. PLUGINS = ['summary', 'clean_summary', ... ]