diff options
author | Waylan Limberg <waylan@gmail.com> | 2014-02-16 14:41:13 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2014-02-16 14:41:13 -0500 |
commit | 1144e2a94cf3f78dedda0b88649ce789fb8d1edf (patch) | |
tree | 6474587da2a36a5983adb3ad97ba62489f28f82e /docs/extensions/header_id.txt | |
parent | 9a03243ff51ce2e868cfd2de713d7de6ae84140e (diff) | |
download | markdown-1144e2a94cf3f78dedda0b88649ce789fb8d1edf.tar.gz markdown-1144e2a94cf3f78dedda0b88649ce789fb8d1edf.tar.bz2 markdown-1144e2a94cf3f78dedda0b88649ce789fb8d1edf.zip |
Cleaned up some minor issues with recent changes to docs.
Diffstat (limited to 'docs/extensions/header_id.txt')
-rw-r--r-- | docs/extensions/header_id.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/extensions/header_id.txt b/docs/extensions/header_id.txt index afa1fe1..90eac3b 100644 --- a/docs/extensions/header_id.txt +++ b/docs/extensions/header_id.txt @@ -43,7 +43,7 @@ configuring extensions. The following options are provided to configure the output: -* **level**: Base level for headers. +* **`level`**: Base level for headers. Default: `1` @@ -60,7 +60,7 @@ The following options are provided to configure the output: <h3 id="some_header">Some Header</h3> <h4 id="next_level">Next Level</h4>' -* **forceid**: Force all headers to have an id. +* **`forceid`**: Force all headers to have an id. Default: `True` @@ -77,11 +77,11 @@ The following options are provided to configure the output: <h1>Some Header</h1> <h1 id="foo">Header with ID</h1> -* **separator**: Word separator. Character which replaces whitespace in id. +* **`separator`**: Word separator. Character which replaces whitespace in id. Default: `-` -* **slugify**: Callable to generate anchors. +* **`slugify`**: Callable to generate anchors. Default: `markdown.extensions.headerid.slugify` |