From 181809ee739d8f057b75c9a3fcf2dfbc922f5d1c Mon Sep 17 00:00:00 2001 From: Harmon Date: Tue, 4 Dec 2018 09:53:14 -0600 Subject: [PATCH] Fix formatting in cursor tutorial --- docs/cursor_tutorial.rst | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/cursor_tutorial.rst b/docs/cursor_tutorial.rst index 57a4612..fd5454c 100644 --- a/docs/cursor_tutorial.rst +++ b/docs/cursor_tutorial.rst @@ -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 -- 2.25.1