summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2011-09-22 11:08:47 -0400
committerWaylan Limberg <waylan@gmail.com>2011-09-22 11:08:47 -0400
commitab1d9f15546b1c2a161bb56058f5f6c825579234 (patch)
tree7c39d5d6330b9f3b5d4aeb7a9bd3a86a7a2d8175
parent107ab187cba2fba2413f2677b919f71f0b021d82 (diff)
downloadpython-markdown-ab1d9f15546b1c2a161bb56058f5f6c825579234.tar.gz
Updated docs to no longer use the [[wikilink]] style links from the old wiki. All links are not realative links which should work with the supplied docs generator.
-rw-r--r--docs/extensions/extra.md22
-rw-r--r--docs/extensions/header_id.md6
-rw-r--r--docs/extensions/index.md33
-rw-r--r--docs/extensions/meta_data.md4
-rw-r--r--docs/extensions/smart_strong.md4
-rw-r--r--docs/extensions/wikilinks.md6
6 files changed, 37 insertions, 38 deletions
diff --git a/docs/extensions/extra.md b/docs/extensions/extra.md
index 3e89427..9bb94c2 100644
--- a/docs/extensions/extra.md
+++ b/docs/extensions/extra.md
@@ -9,15 +9,15 @@ A compilation of various Python-Markdown extensions that (mostly) imitates
The supported extensions include:
-* [[Abbreviations]]
-* [[Attribute Lists]]
-* [[Definition_Lists]]
-* [[Fenced_Code_Blocks]]
-* [[Footnotes]]
-* [[Tables]]
-* [[Smart_Strong]]
-
-See each individual extension for syntax documentation. Extra and all it's
+* [Abbreviations](abbreviations.html)
+* [Attribute Lists](attr_list.html)
+* [Definition Lists](definition_lists.html)
+* [Fenced Code Blocks](fenced_code_blocks.html)
+* [Footnotes](footnotes.html)
+* [Tables](tables.html)
+* [Smart Strong](smart_strong.html)
+
+See each individual extension for syntax documentation. Extra and all its
supported extensions are included in the standard Markdown library.
Usage
@@ -33,10 +33,10 @@ available for import, Markdown will simply continue without that
extension. If you would like to be notified of such failures,
you may set Python-Markdown's logger level to "WARN".
-There may be additional extensions that are distributed with
+There may be [additional extensions](index.html) that are distributed with
Python-Markdown that are not included here in Extra. The features
of those extensions are not part of PHP Markdown Extra, and
therefore, not part of Python-Markdown Extra. If you really would
like Extra to include additional extensions, we suggest creating
your own clone of Extra under a different name
-(see [[Writing Extensions]]).
+(see [Writing Extensions](../writing_extensions.html)).
diff --git a/docs/extensions/header_id.md b/docs/extensions/header_id.md
index b8382ba..90a6673 100644
--- a/docs/extensions/header_id.md
+++ b/docs/extensions/header_id.md
@@ -82,9 +82,9 @@ The HeaderId extension has four configuration settings:
Using with Meta-Data
--------------------
-The HeaderId Extension also supports the [[Meta-Data]] Extension. Please see
-the documentation for that extension for specifics. The supported meta-data
-keywords are:
+The HeaderId Extension also supports the [Meta-Data](meta_data.html) Extension.
+Please see the documentation for that extension for specifics. The supported
+meta-data keywords are:
* `header_level`
* `header_forceid`
diff --git a/docs/extensions/index.md b/docs/extensions/index.md
index d0726e6..5578cbb 100644
--- a/docs/extensions/index.md
+++ b/docs/extensions/index.md
@@ -10,21 +10,20 @@ maintained here and all bug reports should be made to the project. If you
have a typical install of Python-Markdown, these extensions are already
available to you.
-* [[Extra]]
- * [[Abbreviations]]
- * [[Definition_Lists]]
- * [[Fenced_Code_Blocks]]
- * [[Footnotes]]
- * [[Attr_List]]
- * [[Tables]]
-* [[attr_list]]
-* [[CodeHilite]]
-* [[HTML_Tidy]]
-* [[HeaderId]]
-* [[ImageLinks]]
-* [[Meta-Data]]
-* [[nl2br]]
-* [[RSS]]
-* [[Table_of_Contents]]
-* [[WikiLinks]]
+* [Extra](extra.html)
+ * [Abbreviations](abbreviations.html)
+ * [Attribute Lists](attr_list.html)
+ * [Definition Lists](definition_lists.html)
+ * [Fenced Code Blocks](fenced_code_blocks.html)
+ * [Footnotes](footnotes.html)
+ * [Tables](tables.html)
+ * [Smart Strong](smart_strong.html)
+* [CodeHilite](code_hilite.html)
+* [HTML Tidy](html_tidy.html)
+* [HeaderId](header_id.html)
+* [Meta-Data](meta_data.html)
+* [New Line to Break](nl2br.html)
+* [RSS](rss.html)
+* [Table of Contents](toc.html)
+* [WikiLinks](wikilinks.html)
diff --git a/docs/extensions/meta_data.md b/docs/extensions/meta_data.md
index 982ea67..3342722 100644
--- a/docs/extensions/meta_data.md
+++ b/docs/extensions/meta_data.md
@@ -78,10 +78,10 @@ Compatible Extensions
The following are extensions currently known to work with the Meta-Data
Extension and the keywords they are known to support:
-* [[HeaderId]]
+* [HeaderId](header_id.html)
* `header_level`
* `header_forceid`
-* [[WikiLinks]]
+* [[WikiLinks](wikilinks.html)
* `wiki_base_url`
* `wiki_end_url`
* `wiki_html_class`
diff --git a/docs/extensions/smart_strong.md b/docs/extensions/smart_strong.md
index c939016..6ccb1b7 100644
--- a/docs/extensions/smart_strong.md
+++ b/docs/extensions/smart_strong.md
@@ -23,8 +23,8 @@ Usage
extensions=['smart_strong'])
u'<p><strong>this__works__too</strong>.</p>'
-This extension is also included with the [[Extra]] Extension. You may call that
-extension to get this behavior with all the other features of 'Extra'.
+This extension is also included with the [Extra](extra.html) Extension. You may
+call that extension to get this behavior with all the other features of 'Extra'.
>>> markdown.markdown(text, extensions=['extra'])
diff --git a/docs/extensions/wikilinks.md b/docs/extensions/wikilinks.md
index 8bbead5..c54f6d4 100644
--- a/docs/extensions/wikilinks.md
+++ b/docs/extensions/wikilinks.md
@@ -119,9 +119,9 @@ Some may prefer the more complex format when calling the `Markdown` class direct
Using with Meta-Data
--------------------
-The WikiLink Extension also supports the [[Meta-Data]] Extension. Please see
-the documentation for that extension for specifics. The supported meta-data
-keywords are:
+The WikiLink Extension also supports the [Meta-Data](meta_date.html) Extension.
+Please see the documentation for that extension for specifics. The supported
+meta-data keywords are:
* `wiki_base_url`
* `wiki_end_url`