diff --git a/website/meta/universe.json b/website/meta/universe.json index 22c8c3646..3809e20ef 100644 --- a/website/meta/universe.json +++ b/website/meta/universe.json @@ -31,16 +31,13 @@ "github": "afriedman412" }, "code_example": [ - ``` - from sayswho import SaysWho - - text = open("path/to/your/text_file.txt").read() - sw = SaysWho() - sw.attribute(text) - - sw.expand_match() # see quote/cluster matches - sw.render_to_html() # output your text, quotes and cluster matches to an html file called "temp.html" - ``` + "from sayswho import SaysWho", + "text = open(\"path/to/your/text_file.txt\").read()", + "sw = SaysWho()", + "sw.attribute(text)", + + "sw.expand_match() # see quote/cluster matches", + "sw.render_to_html() # output your text, quotes and cluster matches to an html file called \"temp.html\"" ], "category": ["standalone"], "tags": ["attribution", "coref", "text-processing"]