diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index e69de29..0000000 diff --git a/AUTHORS b/CONTRIBUTORS.md similarity index 53% rename from AUTHORS rename to CONTRIBUTORS.md index 3e99d23..fce929c 100644 --- a/AUTHORS +++ b/CONTRIBUTORS.md @@ -1,5 +1,9 @@ +# Contributors + Tom Morris http://tommorris.org/ Barnaby Walters http://waterpigs.co.uk Kartik Prabhu https://kartikprabhu.com Kyle Mahan https://kylewm.com -Kevin Marks http://www.kevinmarks.com/ +Kevin Marks http://www.kevinmarks.com/ +James https://jamesg.blog +Angelo Gladding https://ragt.ag \ No newline at end of file diff --git a/dumpout.py b/dumpout.py deleted file mode 100644 index 0f3328f..0000000 --- a/dumpout.py +++ /dev/null @@ -1,11 +0,0 @@ -import glob -import json -import os.path - -from mf2py import Parser - -allfiles = glob.glob(os.path.join(".", "tests", "tests", "**", "**", "*.json")) -for jsonfile in allfiles: - htmlfile = jsonfile[:-4] + "html" - with open(htmlfile) as f: - p = json.loads(Parser(doc=f).to_json(pretty_print=True))