aboutsummaryrefslogtreecommitdiffstats
path: root/docs/index.md
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2012-03-07 08:43:36 -0500
committerWaylan Limberg <waylan@gmail.com>2012-03-07 08:43:36 -0500
commit9c2830f7b0273ae399b771a7d9780ee7a7430fc4 (patch)
tree688195c324bb373a6f43ffa05ed6a3f222960676 /docs/index.md
parent7060a42a9f9e4941c30a12c019db830bc754da63 (diff)
downloadmarkdown-9c2830f7b0273ae399b771a7d9780ee7a7430fc4.tar.gz
markdown-9c2830f7b0273ae399b771a7d9780ee7a7430fc4.tar.bz2
markdown-9c2830f7b0273ae399b771a7d9780ee7a7430fc4.zip
Added a bunch of internal links to the docs.
Diffstat (limited to 'docs/index.md')
-rw-r--r--docs/index.md14
1 files changed, 8 insertions, 6 deletions
diff --git a/docs/index.md b/docs/index.md
index fb48399..570f36b 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -21,16 +21,16 @@ features:
* __International Input__
- Python-Markdown will accept input in any language supported by Unicode
- including bi-directional text. In fact the test suite includes documents
- written in Russian and Arabic.
+ Python-Markdown will accept [input](reference.html#text) in any language
+ supported by Unicode including bi-directional text. In fact the test suite
+ includes documents written in Russian and Arabic.
* __Middle-Word Emphasis__
Python-Markdown defaults to ignoring middle-word emphasis. In other words,
`some_long_filename.txt` will not become `some<em>long</em>filename.txt`.
This can be switched off if desired. See the
- [Library Reference](reference.html) for details.
+ [Library Reference](reference.html#smart_emphasis) for details.
* __Extensions__
@@ -41,13 +41,15 @@ features:
* __Output Formats__
- Python-Markdown can output documents in HTML4, XHTML and HTML5.
+ Python-Markdown can output documents in HTML4, XHTML and HTML5. See the
+ [Library Reference](reference.html#output_format) for details.
* __"Safe Mode"__
When using Python-Markdown to parse input from untrusted users on the web,
the handling of raw HTML can be controlled in various ways to prevent
- harmful code from being injected into your site.
+ harmful code from being injected into your site. See the
+ [Library Reference](reference.html#safe_mode) for details.
* __Command Line Interface__