Fix formatting in cursor tutorial
authorHarmon <Harmon758@gmail.com>
Tue, 4 Dec 2018 15:53:14 +0000 (09:53 -0600)
committerGitHub <noreply@github.com>
Tue, 4 Dec 2018 15:53:14 +0000 (09:53 -0600)
docs/cursor_tutorial.rst

index 57a461208f3aa5fb6fc42e30ecf18aa5fb619cc7..fd5454cce66519e61c11f915ed2c28bb054fa36e 100644 (file)
@@ -97,9 +97,12 @@ Include Tweets > 140 Characters
 -------------------------------
 
 Since twitter increased the maximum number of characters allowed in a tweet from 140 to 280, you may notice that tweets greater than 140 characters are truncated with ...
+
 If you want your results to include the full text of the long tweets, make these simple changes:
-- add the argument tweet_mode='extended' to your Cursor object call
-- change your usage of .text to .full_text
+
+- add the argument ``tweet_mode='extended'`` to your Cursor object call
+
+- change your usage of ``.text`` to ``.full_text``
 
 .. code-block :: python