Fix Blockquotes

In tufte.css blockquotes should contain a <p> that holds the content
and an optional <footer> for the source of the quote. Otherwise the
block quote text is unbounded and is way too wide. This wraps the
content in a paragraph
This commit is contained in:
Edward Loveall
2021-09-15 15:25:34 -04:00
parent a6cafaa1fc
commit 1c20c81d06
2 changed files with 4 additions and 2 deletions

View File

@@ -81,7 +81,7 @@ describe PageContent do
html = PageContent.new(page: page).render_to_string
html.should eq %(<blockquote>Wayne Gretzky. Michael Scott.</blockquote>)
html.should eq %(<blockquote><p>Wayne Gretzky. Michael Scott.</p></blockquote>)
end
it "renders code" do