You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/topics/documenting-your-api.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ The built-in API documentation includes:
17
17
### Installation
18
18
19
19
The `coreapi` library is required as a dependency for the API docs. Make sure
20
-
to install the latest version. The `pygments` and `markdown` libraries
20
+
to install the latest version. The `Pygments` and `Markdown` libraries
21
21
are optional but recommended.
22
22
23
23
To install the API documentation, you'll need to include it in your project's URLconf:
@@ -277,7 +277,7 @@ When working with viewsets, an appropriate suffix is appended to each generated
277
277
278
278
The description in the browsable API is generated from the docstring of the view or viewset.
279
279
280
-
If the python `markdown` library is installed, then [markdown syntax][markdown] may be used in the docstring, and will be converted to HTML in the browsable API. For example:
280
+
If the python `Markdown` library is installed, then [markdown syntax][markdown] may be used in the docstring, and will be converted to HTML in the browsable API. For example:
281
281
282
282
class AccountListView(views.APIView):
283
283
"""
@@ -331,7 +331,7 @@ To implement a hypermedia API you'll need to decide on an appropriate media type
0 commit comments