aboutsummaryrefslogtreecommitdiffstats
path: root/docs/extensions/definition_lists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/extensions/definition_lists.txt')
-rw-r--r--docs/extensions/definition_lists.txt24
1 files changed, 8 insertions, 16 deletions
diff --git a/docs/extensions/definition_lists.txt b/docs/extensions/definition_lists.txt
index a5ba393..31e8601 100644
--- a/docs/extensions/definition_lists.txt
+++ b/docs/extensions/definition_lists.txt
@@ -1,7 +1,7 @@
-title: Definition List Extension
-prev_title: Attribute List Extension
+title: Definition Lists Extension
+prev_title: Attribute Lists Extension
prev_url: attr_list.html
-next_title: Fenced Code Block Extension
+next_title: Fenced Code Blocks Extension
next_url: fenced_code_blocks.html
Definition Lists
@@ -10,7 +10,7 @@ Definition Lists
Summary
-------
-The Definition List Extension adds the ability to create definition lists in
+The Definition Lists extension adds the ability to create definition lists in
Markdown documents.
This extension is included in the standard Markdown library.
@@ -32,7 +32,7 @@ Thus, the following text (taken from the above referenced PHP documentation):
Orange
: The fruit of an evergreen tree of the genus Citrus.
-will be rendered like so:
+will be rendered as:
<dl>
<dt>Apple</dt>
@@ -47,15 +47,7 @@ will be rendered like so:
Usage
-----
-From the Python interpreter:
+See [Extensions](index.html) for general extension usage, specify `def_list`
+as the name of the extension.
- >>> html = markdown.markdown(text, ['def_list'])
-
-To use with other extensions, just add them to the list, like this:
-
- >>> html = markdown.markdown(text, ['def_list', 'footnotes'])
-
-The extension can also be called from the command line using Markdown's `-x`
-parameter:
-
- python -m markdown -x def_list source.txt > output.html
+This extension does not accept any special configuration options.