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/smarty.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/smarty.txt')
-rw-r--r-- | docs/extensions/smarty.txt | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/docs/extensions/smarty.txt b/docs/extensions/smarty.txt index 3cef11a..b96b82e 100644 --- a/docs/extensions/smarty.txt +++ b/docs/extensions/smarty.txt @@ -13,13 +13,25 @@ Summary The SmartyPants extension converts ASCII dashes, quotes and ellipses to their HTML entity equivalents. -ASCII symbol | Unicode replacements ------------- | -------------------- -' | ‘ ’ -" | “ ” -\... | … -\-- | – --\-- | — +ASCII symbol | Replacements | HTML Entities +------------ | --------------- | ------------------- +' | ‘ ’ | `‘` `’` +" | “ ” | `“` `”` +\... | … | `…` +\-- | – | `–` +-\-- | — | `—` + +!!! note + This extension reimplements the Python [SmartyPants] + library by intregated it into the markdown parser. + While this does not provide any additional features, + it does offer a few advantages. Notably, it will not + try to work on highlighted code blocks (using the + [CodeHilite] Extension) like the third party library + has been known to do. + +[SmartyPants]: http://pythonhosted.org/smartypants/ +[CodeHilite]: code_hilite.html Usage ----- |