From bbd62031f25bb0bfc3f0da121fd9f4e19df3d109 Mon Sep 17 00:00:00 2001 From: Mark Otto <markdotto@gmail.com> Date: Wed, 12 Aug 2015 18:47:15 -0700 Subject: [PATCH] fix blockquote docs --- docs/content/typography.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/typography.md b/docs/content/typography.md index 299edc5709..2434a73281 100644 --- a/docs/content/typography.md +++ b/docs/content/typography.md @@ -179,7 +179,7 @@ For quoting blocks of content from another source within your document. Wrap `<b Add a `<footer>` for identifying the source. Wrap the name of the source work in `<cite>`. {% example html %} -<blockquote> +<blockquote class="blockquote"> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p> <footer>Someone famous in <cite title="Source Title">Source Title</cite></footer> </blockquote> @@ -190,7 +190,7 @@ Add a `<footer>` for identifying the source. Wrap the name of the source work in Add `.blockquote-reverse` for a blockquote with right-aligned content. {% example html %} -<blockquote class="blockquote-reverse"> +<blockquote class="blockquote blockquote-reverse"> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p> <footer>Someone famous in <cite title="Source Title">Source Title</cite></footer> </blockquote> -- GitLab