From af59bf74725937ab2be70fe5de711fa7e4ddfb02 Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Mon, 20 Jun 2011 06:55:12 -0400 Subject: Added docs and tests to attr_list ext. Closes #7. --- docs/extensions/attr_list.txt | 74 +++++++++++++++++++++++++++++++++++++++++ tests/extensions/attr_list.html | 17 ++++++++++ tests/extensions/attr_list.txt | 35 +++++++++++++++++++ tests/extensions/test.cfg | 3 ++ 4 files changed, 129 insertions(+) create mode 100644 docs/extensions/attr_list.txt create mode 100644 tests/extensions/attr_list.html create mode 100644 tests/extensions/attr_list.txt diff --git a/docs/extensions/attr_list.txt b/docs/extensions/attr_list.txt new file mode 100644 index 0000000..6bfe07b --- /dev/null +++ b/docs/extensions/attr_list.txt @@ -0,0 +1,74 @@ +Attribute Lists +=============== + +Summary +------- + +An extension to Python-Markdown that adds a syntax to define attributes on +the various HTML elements in markdown's output. + +This extension is included in the standard Markdown library. + +Syntax +------ + +The basic syntax was inspired by [Maruku][]'s Attribute List feature. + +[Maruku]: http://maruku.rubyforge.org/proposal.html#attribute_lists + +### The List ### + +An example attribute list might look like this: + + {: #someid .someclass somekey='some values' } + +A word which starts with a hash `#` will set the id of an element. + +A word which starts with a dot `.` will add to the list of classes assigned to +an element. + +A key/value pair will assign that pair to the element. + +Be aware that while the dot syntax will add to a class, using key/value pairs +will always override the previously defined attribute. Consider the following: + + {: #id1 .class1 id=id2 class="class2 class3" .class4 } + +The above example would result in the following attributes being defined: + + id="id2 class="class2 class3 class4" + +### Block Level ### + +To define attributes for a block level element, the attribute list should +be defined on the last line of the block by itself. + + This is a paragraph. + {: #an_id .a_class } + +The above results in the following output: + +

This is a paragraph.

+ +The one exception is headers, as they are only ever allowed on one line. + + A setext style header {: #setext} + ================================= + + ### A hash style header ### {: #hash } + +The above results in the following output: + +

A setext style header

+

A hash style header

+ +### Inline ### + +To define attributes on inline elements, the attribute list should be defined +immediately after the inline element with no whitespace. + + [link](http://example.com){: class="foo bar" title="Some title! } + +The above results in the following output: + +

link

diff --git a/tests/extensions/attr_list.html b/tests/extensions/attr_list.html new file mode 100644 index 0000000..1e9c182 --- /dev/null +++ b/tests/extensions/attr_list.html @@ -0,0 +1,17 @@ +

This is a sextext header

+

A paragraph with some text. +Line two of the paragraph.

+

This is another

+

Test some inline text. +A link +And a nested link

+

This is a hash Header

+

And now some random attributes.

+

No closing hash header

+

Now test overrides

+
# A code block which contains attr_list syntax
+# This should be ignored.
+{: #someid .someclass }
+
+

No colon for compatability with Headerid ext

+

Also a codespan: {: .someclass}.

\ No newline at end of file diff --git a/tests/extensions/attr_list.txt b/tests/extensions/attr_list.txt new file mode 100644 index 0000000..d7ed274 --- /dev/null +++ b/tests/extensions/attr_list.txt @@ -0,0 +1,35 @@ +This is a sextext header {: #setext} +==================================== + +A paragraph with some text. +Line two of the paragraph. +{: #par1 .myclass } + +This is another {: #sextext2 .someclass} +---------------------------------------- + +Test some _inline_{: .inline} text. +A [link](http://example.com){: .linkkyclass title="A title."} +And a __nested [link][]{: .linky2}__{: .nest} + +[link]: http://example.com "Some title" + +### This is a hash Header ### {: #hash} + +And now some random attributes. +{:foo bar='b az' baz="blah blah" title="I wasn't kidding!" } + +### No closing hash header {: #hash2} + +Now test overrides +{: #overrideme .andme id=overridden class='foo bar' .addme } + + # A code block which contains attr_list syntax + # This should be ignored. + {: #someid .someclass } + +### No colon for compatability with Headerid ext { #hash3 } + +Also a codespan: `{: .someclass}`{: .foo}. +{: #the_end} + diff --git a/tests/extensions/test.cfg b/tests/extensions/test.cfg index fd57ef1..671f2a5 100644 --- a/tests/extensions/test.cfg +++ b/tests/extensions/test.cfg @@ -1,3 +1,6 @@ +[attr_list] +extensions=attr_list + [codehilite] extensions=codehilite # This passes or not based on version of pygments. -- cgit v1.2.3