From 936a00a9741e653c9a229757f5a68dd32c33ee05 Mon Sep 17 00:00:00 2001 From: Philipp Rudloff Date: Mon, 19 May 2014 16:41:33 +0200 Subject: [PATCH] Prevent table from extending parent width The table containing the _Permalink style examples_ [in the docs](http://jekyllrb.com/docs/permalinks/#permalink-style-examples) extends the width of the content container. The solution I propose is a bit dirty, because I remove `permalink: ` in the left column to make the table fit. Another way would be using `white-space: normal;` for code inside tables. That would lead to _ugly_ line-breaks within the code. What do you think? --- site/docs/permalinks.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/site/docs/permalinks.md b/site/docs/permalinks.md index 155432bd..7a69e95a 100644 --- a/site/docs/permalinks.md +++ b/site/docs/permalinks.md @@ -146,7 +146,7 @@ Given a post named: `/2009-04-29-slap-chop.textile` - + @@ -161,7 +161,7 @@ Given a post named: `/2009-04-29-slap-chop.textile`
Permalink SettingURL Template Resulting Permalink URL
-

permalink: pretty

+

pretty

/2009/04/29/slap-chop/index.html

@@ -169,7 +169,7 @@ Given a post named: `/2009-04-29-slap-chop.textile`
-

permalink: /:month-:day-:year/:title.html

+

/:month-:day-:year/:title.html

/04-29-2009/slap-chop.html

@@ -177,7 +177,7 @@ Given a post named: `/2009-04-29-slap-chop.textile`
-

permalink: /blog/:year/:month/:day/:title

+

/blog/:year/:month/:day/:title

/blog/2009/04/29/slap-chop/index.html