aboutsummaryrefslogtreecommitdiffstats
path: root/docs/extensions/smarty.txt
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2014-07-10 22:58:57 -0400
committerWaylan Limberg <waylan@gmail.com>2014-07-10 22:58:57 -0400
commit88fcb084c83a2402dafec4576df830008242e3d4 (patch)
tree0882b7f56e62517f357b30e48a0cb7a120531792 /docs/extensions/smarty.txt
parent5ecd68b81b487fcd4784c50cd8a1de6d23a2f62c (diff)
parent819be506a669713354a96b478b2175396fe75d9c (diff)
downloadmarkdown-88fcb084c83a2402dafec4576df830008242e3d4.tar.gz
markdown-88fcb084c83a2402dafec4576df830008242e3d4.tar.bz2
markdown-88fcb084c83a2402dafec4576df830008242e3d4.zip
Merge branch 'master' of github.com:waylan/Python-Markdown
Diffstat (limited to 'docs/extensions/smarty.txt')
-rw-r--r--docs/extensions/smarty.txt24
1 files changed, 13 insertions, 11 deletions
diff --git a/docs/extensions/smarty.txt b/docs/extensions/smarty.txt
index b96b82e..56e9bd5 100644
--- a/docs/extensions/smarty.txt
+++ b/docs/extensions/smarty.txt
@@ -15,11 +15,12 @@ their HTML entity equivalents.
ASCII symbol | Replacements | HTML Entities
------------ | --------------- | -------------------
-&#39; | &lsquo; &rsquo; | `&lsquo;` `&rsquo;`
-&quot; | &ldquo; &rdquo; | `&ldquo;` `&rdquo;`
-\... | &hellip; | `&hellip;`
-\-- | &ndash; | `&ndash;`
--\-- | &mdash; | `&mdash;`
+`'` | &lsquo; &rsquo; | `&lsquo;` `&rsquo;`
+`"` | &ldquo; &rdquo; | `&ldquo;` `&rdquo;`
+`<< >>` | &laquo; &raquo; | `&laquo;` `&raquo;`
+`...` | &hellip; | `&hellip;`
+`--` | &ndash; | `&ndash;`
+`---` | &mdash; | `&mdash;`
!!! note
This extension reimplements the Python [SmartyPants]
@@ -42,13 +43,14 @@ as the name of the extension.
See the [Library Reference](../reference.html#extensions) for information about
configuring extensions.
-The following options are provided to configure the output (all three are set to `True` by default):
+The following options are provided to configure the output:
-Option | Description
------- | -----------
-`smart_dashes` | whether to convert dashes
-`smart_quotes` | whether to convert quotes
-`smart_ellipses` | whether to convert ellipses
+Option | Default value | Description
+------ | ------------- | -----------
+`smart_dashes` | enabled | whether to convert dashes
+`smart_quotes` | enabled | whether to convert straight quotes
+`smart_angled_quotes` | disabled | whether to convert angled quotes
+`smart_ellipses` | enabled | whether to convert ellipses
Further reading
---------------