aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz Diener <[email protected]>2016-11-25 19:59:01 +0100
committerLorenz Diener <[email protected]>2016-11-25 19:59:01 +0100
commit4a3e2d232d7de7e7a82b7e538b757f9b17eb6440 (patch)
treeb7fd503b6a6e909cb6173239db7090716a398bcb /docs/index.rst
parentd3cd46057c2dd198d241d979051c93f5d1283e8a (diff)
downloadmastodon.py-4a3e2d232d7de7e7a82b7e538b757f9b17eb6440.tar.gz
readthedocs does not like .. code-block:: with no empty line after
Diffstat (limited to 'docs/index.rst')
-rw-r--r--docs/index.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/index.rst b/docs/index.rst
index a9ecf49..2d61f14 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -87,6 +87,7 @@ Returns a single toot dict for the given status.
87.. automethod:: Mastodon.status_context 87.. automethod:: Mastodon.status_context
88 88
89.. code-block:: python 89.. code-block:: python
90
90 mastodon.status_context(<numerical id>) 91 mastodon.status_context(<numerical id>)
91 # Returns 92 # Returns
92 { 93 {
@@ -115,7 +116,9 @@ their relationships.
115.. automethod:: Mastodon.account_verify_credentials 116.. automethod:: Mastodon.account_verify_credentials
116 117
117These methods return an account dict: 118These methods return an account dict:
119
118.. code-block:: python 120.. code-block:: python
121
119 mastodon.account(<numerical id>) 122 mastodon.account(<numerical id>)
120 # Returns 123 # Returns
121 { 124 {
@@ -157,7 +160,9 @@ interact with already posted statuses.
157.. automethod:: Mastodon.status_unfavourite 160.. automethod:: Mastodon.status_unfavourite
158 161
159These methods return a toot dict: 162These methods return a toot dict:
163
160.. code-block:: python 164.. code-block:: python
165
161 mastodon.toot("Hello from Python") 166 mastodon.toot("Hello from Python")
162 # Returns the following dictionary: 167 # Returns the following dictionary:
163 { 168 {
@@ -180,7 +185,9 @@ These methods return a toot dict:
180 185
181.. automethod:: Mastodon.status_delete 186.. automethod:: Mastodon.status_delete
182Returns an empty dict: 187Returns an empty dict:
188
183.. code-block:: python 189.. code-block:: python
190
184 mastodon.delete_status(<numerical id>) 191 mastodon.delete_status(<numerical id>)
185 # Returns 192 # Returns
186 {} 193 {}
@@ -191,7 +198,9 @@ These functions allow you to interact with other accounts: To (un)follow and
191(un)block. 198(un)block.
192 199
193They return a relationship dict: 200They return a relationship dict:
201
194.. code-block:: python 202.. code-block:: python
203
195 mastodon.account_follow(<numerical id>) 204 mastodon.account_follow(<numerical id>)
196 # Returns 205 # Returns
197 { 206 {
@@ -215,7 +224,9 @@ to attach media to statuses.
215.. automethod:: Mastodon.media_post 224.. automethod:: Mastodon.media_post
216 225
217Returns a media dict: 226Returns a media dict:
227
218.. code-block:: python 228.. code-block:: python
229
219 mastodon.media_post("image.jpg", "image/jpeg") 230 mastodon.media_post("image.jpg", "image/jpeg")
220 # Returns 231 # Returns
221 { 232 {
Powered by cgit v1.2.3 (git 2.41.0)