From 9fd4a5f1600c96406ad0fb86b1a8287d525972ac Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Wed, 7 Mar 2012 09:08:36 -0500 Subject: Fixed up some formating errors in docs and added/fixed more internal links. --- docs/extensions/abbreviations.md | 2 +- docs/extensions/definition_lists.md | 2 +- docs/extensions/html_tidy.md | 3 ++- docs/extensions/index.md | 2 +- docs/extensions/meta_data.md | 2 +- docs/extensions/sane_lists.md | 2 +- docs/extensions/smart_strong.md | 7 +++--- docs/extensions/tables.md | 47 ++++++++++++++++++------------------- docs/extensions/wikilinks.md | 2 +- 9 files changed, 35 insertions(+), 34 deletions(-) (limited to 'docs/extensions') diff --git a/docs/extensions/abbreviations.md b/docs/extensions/abbreviations.md index 994d8dc..fa38f50 100644 --- a/docs/extensions/abbreviations.md +++ b/docs/extensions/abbreviations.md @@ -5,7 +5,7 @@ next_title: Attribute List Extension next_url: attr_list.html Abbreviations -------------- +============= Summary ------- diff --git a/docs/extensions/definition_lists.md b/docs/extensions/definition_lists.md index a76be5c..53f14a0 100644 --- a/docs/extensions/definition_lists.md +++ b/docs/extensions/definition_lists.md @@ -5,7 +5,7 @@ next_title: Fenced Code Block Extension next_url: fenced_code_blocks.html Definition Lists ----------------- +================ Summary ------- diff --git a/docs/extensions/html_tidy.md b/docs/extensions/html_tidy.md index db807f7..391349b 100644 --- a/docs/extensions/html_tidy.md +++ b/docs/extensions/html_tidy.md @@ -15,7 +15,7 @@ This extension is available in the standard Markdown library since version 2.0. [HTML Tidy]: http://tidy.sourceforge.net/ [uTidylib]: http://utidylib.berlios.de/ -Note than any Tidy [options][] can be passed in as extension configs. So, +Note than any Tidy [options][] can be passed in as [extension configs][]. So, for example, to output HTML rather than XHTML, set ``output_xhtml=0``. To indent the output, set ``indent=auto`` and to have Tidy wrap the output in ```` and ```` tags, set ``show_body_only=0``. See Tidy's @@ -24,6 +24,7 @@ most closely match Markdowns defaults with the exception that you get much better pretty-printing. [options]: http://tidy.sourceforge.net/docs/quickref.html +[extension configs]: ../reference.html#extension_configs Note that options set in this extension will override most any other settings passed on to Markdown (such as "output_format"). Unlike Markdown, this extension diff --git a/docs/extensions/index.md b/docs/extensions/index.md index 293d1b0..82b0eda 100644 --- a/docs/extensions/index.md +++ b/docs/extensions/index.md @@ -13,7 +13,7 @@ to change and/or extend the behavior of the parser without having to edit the actual source files. To use an extension, pass it's name to markdown with the `extensions` keyword. -See the [Library Reference](../reference.html) for more details. +See the [Library Reference](../reference.html#extensions) for more details. markdown.markdown(some_text, extensions=['extra', 'nl2br']) diff --git a/docs/extensions/meta_data.md b/docs/extensions/meta_data.md index 8c156c9..1695d8b 100644 --- a/docs/extensions/meta_data.md +++ b/docs/extensions/meta_data.md @@ -87,7 +87,7 @@ Extension and the keywords they are known to support: * [HeaderId](header_id.html) * `header_level` * `header_forceid` -* [[WikiLinks](wikilinks.html) +* [WikiLinks](wikilinks.html) * `wiki_base_url` * `wiki_end_url` * `wiki_html_class` diff --git a/docs/extensions/sane_lists.md b/docs/extensions/sane_lists.md index c108ad8..e6c73f4 100644 --- a/docs/extensions/sane_lists.md +++ b/docs/extensions/sane_lists.md @@ -5,7 +5,7 @@ next_title: Table of Contents Extension next_url: toc.html Sane Lists ----------- +========== Summary ------- diff --git a/docs/extensions/smart_strong.md b/docs/extensions/smart_strong.md index 22468d6..8de574f 100644 --- a/docs/extensions/smart_strong.md +++ b/docs/extensions/smart_strong.md @@ -5,13 +5,14 @@ next_title: CodeHilite Extension next_url: code_hilite.html Smart_Strong ------------- +============ Summary +------- The Markdown Smart_Strong Extension adds smarter handling of double underscores -within words. This does for double underscores what 'smart_emphasis' does for -single underscores. +within words. This does for double underscores what +[smart_emphasis](../reference.html#smart_emphasis) does for single underscores. The Smart_Strong Extension is included in the standard Markdown library. diff --git a/docs/extensions/tables.md b/docs/extensions/tables.md index e37a752..bb0872a 100644 --- a/docs/extensions/tables.md +++ b/docs/extensions/tables.md @@ -5,7 +5,7 @@ next_title: Smart Strong Extension next_url: smart_strong.html Tables ----------------- +====== Summary ------- @@ -23,32 +23,31 @@ Tables are defined using the syntax established in [PHP Markdown Extra][php]. Thus, the following text (taken from the above referenced PHP documentation): -First Header | Second Header -------------- | ------------- -Content Cell | Content Cell -Content Cell | Content Cell + First Header | Second Header + ------------- | ------------- + Content Cell | Content Cell + Content Cell | Content Cell will be rendered as: - - - - - - - - - - - - - - - - - - -
First HeaderSecond Header
Content CellContent Cell
Content CellContent Cell
+ + + + + + + + + + + + + + + + + +
First HeaderSecond Header
Content CellContent Cell
Content CellContent Cell
Usage ----- diff --git a/docs/extensions/wikilinks.md b/docs/extensions/wikilinks.md index 522e7c5..b5e2b04 100644 --- a/docs/extensions/wikilinks.md +++ b/docs/extensions/wikilinks.md @@ -125,7 +125,7 @@ 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](meta_date.html) Extension. +The WikiLink 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: -- cgit v1.2.3