From 83f1f4a51c07944a87c3346dd1b433e7d4a82a00 Mon Sep 17 00:00:00 2001 From: dozens Date: Wed, 21 Oct 2020 13:15:21 -0600 Subject: [PATCH] first commit! --- README.md | 20 ++++++++++++++++++++ oulipo.json | 19 +++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 README.md create mode 100644 oulipo.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..de94315 --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +# Oulipo + +> An English to oulipo dictionary + +This JSON file can be used to return oulipo suggestions for common +English words. + +## Example + +This www page consumes the JSON and builds an HTML dictionary list: + +## Contributing + +Pull requests welcome! + +## Resources + +More about oulipo: + +Join the #oulipo channel on tilde.town diff --git a/oulipo.json b/oulipo.json new file mode 100644 index 0000000..3361600 --- /dev/null +++ b/oulipo.json @@ -0,0 +1,19 @@ +{ + "hello": [ + "hi", + "salutations" + ], + "here": [ + "in this location" + ], + "me": [ + "this human", + "my avatar" + ], + "same": [ + "similar" + ], + "different": [ + "not similar" + ] +}