From 91ee1edf9ed5aedccbdd9d33ba515f7c6b6987e8 Mon Sep 17 00:00:00 2001 From: Bernhard Fisseni Date: Sun, 20 Jul 2014 11:27:20 +0200 Subject: [PATCH] Fix package name in README and doc string example --- README.md | 2 +- meta_yaml.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5b88905..1bee6ef 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Dependencies: [PyYAML](http://pyyaml.org/) ... ... The body. This is paragraph one. ... ''' - >>> md = markdown.Markdown(['meta']) + >>> md = markdown.Markdown(['meta_yaml']) >>> print(md.convert(text))

The body. This is paragraph one.

>>> print(md.Meta) # doctest: +SKIP diff --git a/meta_yaml.py b/meta_yaml.py index 0a31620..ab54e6b 100644 --- a/meta_yaml.py +++ b/meta_yaml.py @@ -21,7 +21,7 @@ Basic Usage: ... ... The body. This is paragraph one. ... ''' - >>> md = markdown.Markdown(['meta']) + >>> md = markdown.Markdown(['meta_yaml']) >>> print(md.convert(text))

The body. This is paragraph one.

>>> print(md.Meta) # doctest: +SKIP @@ -30,7 +30,7 @@ Basic Usage: Make sure text without Meta Data still works (markdown < 1.6b returns a

). >>> text = ' Some Code - not extra lines of meta data.' - >>> md = markdown.Markdown(['meta']) + >>> md = markdown.Markdown(['meta_yaml']) >>> print(md.convert(text))

Some Code - not extra lines of meta data.