<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tim&#039;s Bandwagon &#187; Markup and CSS</title>
	<atom:link href="http://www.twisty.com/bandwagon/archives/categories/markup-and-css/feed" rel="self" type="application/rss+xml" />
	<link>http://www.twisty.com/bandwagon</link>
	<description>Hitch your wagon to a chicken</description>
	<lastBuildDate>Sat, 16 Jul 2011 13:19:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Preview Markdown Documents in BBEdit</title>
		<link>http://www.twisty.com/bandwagon/archives/2005/10/31/195241</link>
		<comments>http://www.twisty.com/bandwagon/archives/2005/10/31/195241#comments</comments>
		<pubDate>Mon, 31 Oct 2005 18:52:41 +0000</pubDate>
		<dc:creator>Tim Brayshaw</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Markup and CSS]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.twisty.com/bandwagon/?p=241</guid>
		<description><![CDATA[A quickie: here&#8217;s a way of directly previewing Markdown documents in the BBEdit preview window using PHP. (Inspired by this Python method that does the same thing). Make a template file (you&#8217;ll probably want to add some styles to this). ~/Sites/markdown-preview/template.html 1 2 3 4 5 6 7 8 9 10 11 &#60;!DOCTYPE html PUBLIC [...]]]></description>
			<content:encoded><![CDATA[<p>A quickie: here&#8217;s a way of directly previewing <a href="http://daringfireball.net/projects/markdown/">Markdown</a> documents in the <a href="http://www.barebones.com/products/bbedit/">BBEdit</a> preview window using <a href="http://www.php.net/">PHP</a>. (Inspired by this <a href="http://blog.mostrom.pp.se/?p=63" title="Preview Markdown documents using BBEdit">Python method</a> that does the same thing).</p>

<ol>
<li><p>Make a template file (you&#8217;ll probably want to add some styles to this).</p>
<p><em>~/Sites/markdown-preview/template.html</em></p>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #00bbdd;">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.1//EN&quot;</span>
<span style="color: #00bbdd;">        &quot;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&quot;&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">html</span> xmlns<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.w3.org/1999/xhtml&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">head</span>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">meta</span> <span style="color: #000066;">http-equiv</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;content-type&quot;</span> <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/html; charset=utf-8&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">title</span>&gt;</span>Markdown Preview<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">title</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">head</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">body</span>&gt;</span>
##markdown##
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">body</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">html</span>&gt;</span></pre></td></tr></table></div>


</li>
<li><p>Make the php file, and follow the instructions in the PHP comments.</p>
<p><em>~/Sites/markdown-preview/index.php</em></p>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
&nbsp;
<span style="color: #666666; font-style: italic;">/*
 * Download these and put them somewhere in your php path:
 *
 *     &lt;a href=&quot;http://www.michelf.com/projects/php-markdown/&quot;&gt;http://www.michelf.com/projects/php-markdown/&lt;/a&gt;
 *     &lt;a href=&quot;http://www.michelf.com/projects/php-smartypants/&quot;&gt;http://www.michelf.com/projects/php-smartypants/&lt;/a&gt;
 */</span>
<span style="color: #b1b100;">include_once</span> <span style="color: #0000ff;">'markdown.php'</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">include_once</span> <span style="color: #0000ff;">'smartypants.php'</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">/*
 * You'll need to change this:
 */</span>
<span style="color: #000088;">$markdownDocsDir</span> <span style="color: #339933;">=</span> <span style="color: #990000;">isset</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'MARKDOWN_DOCS_DIR'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> ? <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'MARKDOWN_DOCS_DIR'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">:</span> <span style="color: #0000ff;">'/Users/username/Documents'</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">/*
 * You'll need to set up BBEdit to use something like this as the Preview Server URL:
 *
 *     http://localhost/markdown-preview/?file=/
 */</span>
<span style="color: #000088;">$file</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'file'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$text</span> <span style="color: #339933;">=</span> <span style="color: #990000;">file_get_contents</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$markdownDocsDir</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$file</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$formatted</span> <span style="color: #339933;">=</span> SmartyPants<span style="color: #009900;">&#40;</span>Markdown<span style="color: #009900;">&#40;</span><span style="color: #000088;">$text</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'2'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">/*
 * Display the formatted text via a simple template.
 */</span>
<span style="color: #000088;">$templateFile</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'./template.html'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$templateText</span> <span style="color: #339933;">=</span> <span style="color: #990000;">file_exists</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$templateFile</span><span style="color: #009900;">&#41;</span> ? <span style="color: #990000;">file_get_contents</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$templateFile</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #0000ff;">&quot;##markdown##&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">str_replace</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'##markdown##'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$formatted</span><span style="color: #339933;">,</span> <span style="color: #000088;">$templateText</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>


</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.twisty.com/bandwagon/archives/2005/10/31/195241/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Maps Stockist Finder</title>
		<link>http://www.twisty.com/bandwagon/archives/2005/06/30/181525</link>
		<comments>http://www.twisty.com/bandwagon/archives/2005/06/30/181525#comments</comments>
		<pubDate>Thu, 30 Jun 2005 17:15:25 +0000</pubDate>
		<dc:creator>Tim Brayshaw</dc:creator>
				<category><![CDATA[Markup and CSS]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://trunk.www.twisty.coronationroad/bandwagon/?p=233</guid>
		<description><![CDATA[I&#8217;ve been playing with the Google Maps API this afternoon, and it looks pretty good. I&#8217;ve knocked-up a stockist map for Cardtastic. (For those who don&#8217;t know me, Cardtastic is a greeting card company run by my partner, Helen.) One problem encountered was performance is bad when adding lots of markers, we&#8217;re only adding about [...]]]></description>
			<content:encoded><![CDATA[<p>I&rsquo;ve been playing with the <a href="http://www.google.com/apis/maps/documentation/">Google Maps API</a> this afternoon, and it looks pretty good. I&rsquo;ve knocked-up a <a href="http://www.cardtastic.co.uk/stockists/map/">stockist map</a> for Cardtastic. (For those who don&#8217;t know me, Cardtastic is a greeting card company run by my partner, Helen.)</p>

<p>One problem encountered was <a href="http://groups-beta.google.com/group/Google-Maps-API/browse_thread/thread/fe446d27a0391ac4/f5c6cfcb227df88f">performance is bad when adding lots of markers</a>, we&rsquo;re only adding about 180 markers to the map, and my browser kept alerting that a script was running slowly and asking if I wanted to abort it or continue. Not ideal.</p>

<p>I&rsquo;ve worked around it by adding a little time between adding the markers to the map so the browser catch its breath again. I&rsquo;ve also grown to quite like the gimmicky animated effect while stockists start popping-up all over the country!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.twisty.com/bandwagon/archives/2005/06/30/181525/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript window.open sizes not reliable?</title>
		<link>http://www.twisty.com/bandwagon/archives/2005/03/20/224617</link>
		<comments>http://www.twisty.com/bandwagon/archives/2005/03/20/224617#comments</comments>
		<pubDate>Sun, 20 Mar 2005 21:46:17 +0000</pubDate>
		<dc:creator>Tim Brayshaw</dc:creator>
				<category><![CDATA[Markup and CSS]]></category>

		<guid isPermaLink="false">http://trunk.www.twisty.coronationroad/bandwagon/?p=225</guid>
		<description><![CDATA[In Safari, why are windows opened via Javascript 2 pixels wider and 1 pixel higher than requested? I googled for the answer no avail, so made a simple test page, and asked for answers on a (usually quite reliable) local mailing list, but haven&#8217;t got an answer. So, I posted the test page to my [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>In <a href="http://www.apple.com/safari/">Safari</a>, why are windows opened via Javascript 2 pixels wider and 1 pixel higher than requested?</p><p></p>

<p>I googled for the answer no avail, so made <a href="http://www.twisty.com/misc/tests/safari-window-size/opener.html">a simple test page</a>, and <a href="http://www.under-score.org.uk/pipermail/underscore/2005-March/035566.html">asked for answers on a (usually quite reliable) local mailing list</a>, but haven&#8217;t got an answer. So, I posted the test page to my <a href="http://del.icio.us/twisty/required:help">linklog</a> in the hope of it gaining a wider audience. A few hits, but no answer <code> <img src='http://www.twisty.com/bandwagon/wordpress/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </code>.</p>

<p>So: now, I&#8217;m re-posting the question here to drizzle a little google-juice on the <a href="http://www.twisty.com/misc/tests/safari-window-size/opener.html">test page</a>, and hope one of my legion of trusty feed subscribers can spring to my assistance.</p>

<p>I suppose a keyword-stuffed rephrasing of the question could be: <q>Is there reliable cross browser way or technique for opening a fixed-size window via Javascript or with DOM browser scripting (<code>window.open</code> or similar)?</q></p>
]]></content:encoded>
			<wfw:commentRss>http://www.twisty.com/bandwagon/archives/2005/03/20/224617/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>My Spartan Stylesheet for NetNewsWire</title>
		<link>http://www.twisty.com/bandwagon/archives/2004/10/28/130842</link>
		<comments>http://www.twisty.com/bandwagon/archives/2004/10/28/130842#comments</comments>
		<pubDate>Thu, 28 Oct 2004 12:08:42 +0000</pubDate>
		<dc:creator>Tim Brayshaw</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Markup and CSS]]></category>
		<category><![CDATA[User Interface]]></category>

		<guid isPermaLink="false">http://trunk.www.twisty.coronationroad/bandwagon/?p=215</guid>
		<description><![CDATA[I&#8217;ve just uploaded Spartan &#8211; yet another simple stylesheet for NetNewsWire 2. If you&#8217;re looking for a high-falootin&#8217; rootin&#8217;-tootin&#8217; fancy-dancy piece of eye-candy, this isn&#8217;t it. It&#8217;s just a simple plain stylesheet designed for everyday reading.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just uploaded <a href="http://www.twisty.com/misc/spartan/">Spartan</a> &ndash; yet another simple stylesheet for <a href="http://ranchero.com/netnewswire/">NetNewsWire</a> 2. If you&#8217;re looking for a high-falootin&#8217; rootin&#8217;-tootin&#8217; fancy-dancy piece of eye-candy, this isn&#8217;t it. It&#8217;s just a simple plain stylesheet designed for everyday reading.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.twisty.com/bandwagon/archives/2004/10/28/130842/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Yellow Fade Technique</title>
		<link>http://www.twisty.com/bandwagon/archives/2004/02/21/104730</link>
		<comments>http://www.twisty.com/bandwagon/archives/2004/02/21/104730#comments</comments>
		<pubDate>Sat, 21 Feb 2004 09:47:30 +0000</pubDate>
		<dc:creator>Tim Brayshaw</dc:creator>
				<category><![CDATA[Markup and CSS]]></category>

		<guid isPermaLink="false">http://trunk.www.twisty.coronationroad/bandwagon/?p=200</guid>
		<description><![CDATA[Signal vs. Noise: The Yellow Fade Technique: [&#8230;] The YFT uses JavaScript to create a yellow highlight that briefly spotlights the change when the page reloads. Then, in a second or two, the highlight fades and the page reverts to its normal state. The YFT makes it super easy to spot edits/changes yet its unobtrusive [...]]]></description>
			<content:encoded><![CDATA[<p>Signal vs. Noise: <a href="http://www.37signals.com/svn/archives/000558.php">The Yellow Fade Technique</a>:</p>

<blockquote>
<p>[&hellip;] The YFT uses JavaScript to create a yellow highlight that briefly spotlights the change when the page reloads. Then, in a second or two, the highlight fades and the page reverts to its normal state. The YFT makes it super easy to spot edits/changes yet its unobtrusive nature lets people quickly get back to work once a modification is confirmed.</p>
</blockquote>

<p>Kind of like a super-slow version of <a href="http://www.holovaty.com/blog/archive/2002/11/21/1253/?highlight=bbc">the colour changes on the BBC site</a>. In reverse. <code> <img src='http://www.twisty.com/bandwagon/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.twisty.com/bandwagon/archives/2004/02/21/104730/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Stylesheet</title>
		<link>http://www.twisty.com/bandwagon/archives/2004/02/20/012016</link>
		<comments>http://www.twisty.com/bandwagon/archives/2004/02/20/012016#comments</comments>
		<pubDate>Fri, 20 Feb 2004 00:20:16 +0000</pubDate>
		<dc:creator>Tim Brayshaw</dc:creator>
				<category><![CDATA[Markup and CSS]]></category>

		<guid isPermaLink="false">http://trunk.www.twisty.coronationroad/bandwagon/?p=199</guid>
		<description><![CDATA[According to Zeldman drop shadows might well be the new black. There is a CSS 3 text-shadow property that gives drop-shadows to text; at the moment, I think only Safari 1.2 on Panther supports it. A little while ago I knocked-up a bare bones retro style stylesheet subtly enhanced by CSS text-shadows on the headlines [...]]]></description>
			<content:encoded><![CDATA[<p>According to Zeldman <a href="http://www.zeldman.com/daily/0204h.shtml">drop shadows might well be the new black</a>. There is a <acronym title="Cascading Style Sheets">CSS</acronym> 3 <code>text-shadow</code> property that gives drop-shadows to text; at the moment, I think only <a href="http://www.apple.com/safari/">Safari</a> 1.2 on <a href="http://www.apple.com/macosx/">Panther</a> supports it. A little while ago I knocked-up a bare bones retro style stylesheet subtly enhanced by <acronym title="Cascading Style Sheets">CSS</acronym> <code>text-shadow</code>s on the headlines (choose <em>Monotone</em> from the <a href="http://www.twisty.com/customise/">style-switcher page</a> to view it).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.twisty.com/bandwagon/archives/2004/02/20/012016/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Nifty CSS Content-type Link Icons</title>
		<link>http://www.twisty.com/bandwagon/archives/2004/02/14/232705</link>
		<comments>http://www.twisty.com/bandwagon/archives/2004/02/14/232705#comments</comments>
		<pubDate>Sat, 14 Feb 2004 22:27:05 +0000</pubDate>
		<dc:creator>Tim Brayshaw</dc:creator>
				<category><![CDATA[Markup and CSS]]></category>

		<guid isPermaLink="false">http://trunk.www.twisty.coronationroad/bandwagon/?p=196</guid>
		<description><![CDATA[The Extensible Open XHTML Outlines Experimental Specification has an example of an XOXO document that employs CSS attribute selectors to display fashionable antipixel-style icons based on a hyperlink&#8217;s specified content-type. (Nothing spectacular, but the simplicty appealed to me!)]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://developers.technorati.com/wiki/xhtmloutlines">Extensible Open XHTML Outlines Experimental Specification</a> has an example of an <a href="http://diveintomark.org/public/2004/01/xo-with-style.xo" title="XO as a standalone XHTML page, styled with CSS">XOXO document</a> that employs <acronym title="Cascading Style Sheets">CSS</acronym> <a href="http://www.w3.org/TR/REC-CSS2/selector.html#attribute-selectors">attribute selectors</a> to display fashionable <a href="http://www.antipixel.com/blog/archives/2002/10/22/steal_these_buttons.html">antipixel-style icons</a> based on a hyperlink&#8217;s specified <a href="http://www.w3.org/TR/xhtml-modularization/abstraction.html#dt_ContentType">content-type</a>. (Nothing spectacular, but the simplicty appealed to me!)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.twisty.com/bandwagon/archives/2004/02/14/232705/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>max-width in Internet Explorer</title>
		<link>http://www.twisty.com/bandwagon/archives/2003/12/19/155254</link>
		<comments>http://www.twisty.com/bandwagon/archives/2003/12/19/155254#comments</comments>
		<pubDate>Fri, 19 Dec 2003 14:52:54 +0000</pubDate>
		<dc:creator>Tim Brayshaw</dc:creator>
				<category><![CDATA[Markup and CSS]]></category>

		<guid isPermaLink="false">http://trunk.www.twisty.coronationroad/bandwagon/?p=186</guid>
		<description><![CDATA[Ingenious hackery from Svend Tofte &#8212; using Internet Explorer&#8217;s proprietry expression() value in CSS to simulate max-width: Most web-developers know that IE has fallen behind in the race for standards and being able to show the latest and greatest. Many CSS2 properties are unsupported. Some of the more useful ones, are properties such as max-width, [...]]]></description>
			<content:encoded><![CDATA[<p>Ingenious hackery from <a href="http://www.svendtofte.com/">Svend Tofte</a> &mdash; using Internet Explorer&#8217;s proprietry <code>expression()</code> value in CSS to <a href="http://www.svendtofte.com/code/max_width_in_ie/">simulate max-width</a>:</p>

<blockquote>
<p>Most web-developers know that IE has fallen behind in the race for standards and being able to show the latest and greatest. Many <a href="http://www.w3.org/TR/REC-CSS2/" title="the monumental CSS2 spec at W3C">CSS2</a> properties are unsupported. Some of the more useful ones, are properties such as <code><a href="http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-max-width" title="max-width definition">max-width</a></code>, <code><a href="http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-max-height" title="max-height definition">max-height</a></code>, <code><a href="http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-min-width" title="min-width definition">min-width</a></code> and finally <code><a href="http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-min-height" title="min-height definition">min-height</a></code>. I will argue, how <code>max-width</code> is a crucial property, when it comes to on line readability, and then I will show you how to make IE emulate the behavior of max-width, and in turn, how to make it emulate many other properties that it&#8217;s not directly capable of.</p>
</blockquote>

<p>[via <a href="http://hypothecate.co.uk/200312archive001.asp#1071845938001">Hypothecate</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.twisty.com/bandwagon/archives/2003/12/19/155254/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSS Target Trick</title>
		<link>http://www.twisty.com/bandwagon/archives/2003/12/17/191336</link>
		<comments>http://www.twisty.com/bandwagon/archives/2003/12/17/191336#comments</comments>
		<pubDate>Wed, 17 Dec 2003 18:13:36 +0000</pubDate>
		<dc:creator>Tim Brayshaw</dc:creator>
				<category><![CDATA[Markup and CSS]]></category>

		<guid isPermaLink="false">http://trunk.www.twisty.coronationroad/bandwagon/?p=184</guid>
		<description><![CDATA[Spotted on Daniel Glazman&#8217;s weblog, a good use of using the CSS :target selector to highlight the active target (example). I knocked-up a simple demonstration.]]></description>
			<content:encoded><![CDATA[<p>Spotted on <a href="http://webperso.easyconnect.fr/danielglazman/weblog/">Daniel Glazman&#8217;s weblog</a>, a good use of using the <acronym title="Cascading Style Sheets">CSS</acronym> <code>:target</code> selector to highlight the active target (<a href="http://webperso.easyconnect.fr/danielglazman/weblog/newarchive/2003_12_14_glazblogarc.html#s107159523045741695">example</a>). I knocked-up a <a href="http://www.twisty.com/misc/tests/css/target-trick.html#b">simple demonstration</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.twisty.com/bandwagon/archives/2003/12/17/191336/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>XHTML Friends Network</title>
		<link>http://www.twisty.com/bandwagon/archives/2003/12/16/002242</link>
		<comments>http://www.twisty.com/bandwagon/archives/2003/12/16/002242#comments</comments>
		<pubDate>Mon, 15 Dec 2003 23:22:42 +0000</pubDate>
		<dc:creator>Tim Brayshaw</dc:creator>
				<category><![CDATA[Markup and CSS]]></category>

		<guid isPermaLink="false">http://trunk.www.twisty.coronationroad/bandwagon/?p=183</guid>
		<description><![CDATA[I spotted Tantek &#199;elik&#8217;s use of the profile attribute a while back. Now, Tantek &#199;elik, Matthew Mullenweg and Eric Meyer have announced XFN. XFN&#8482; (XHTML Friends Network) is a simple way to represent human relationships using hyperlinks. In recent years, blogs and blogrolls have become the fastest growing area of the Web. XFN enables web [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.twisty.com/bandwagon/archives/2003/02/04/010002">I spotted</a> Tantek &Ccedil;elik&#8217;s use of the <a href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-profile">profile</a> attribute a while back. Now, <a href="http://tantek.com/log/2003/12.html#L20031215t0830">Tantek &Ccedil;elik</a>, <a href="http://photomatt.net/archives/2003/12/15/distributed-social-networking-software/">Matthew Mullenweg</a> and <a href="http://www.meyerweb.com/eric/thoughts/200312.html#t20031215">Eric Meyer</a> have announced <a href="http://gmpg.org/xfn/">XFN</a>.</p>

<blockquote>
<abbr title="XHTML Friends Network">XFN&trade;</abbr> (<strong>X</strong>HTML <strong>F</strong>riends <strong>N</strong>etwork) is a simple way to represent human relationships using hyperlinks.  In recent years, <dfn><a href="http://marketingterms.com/dictionary/blog/" title="Hyperlink to a definition of the term 'blog'">blogs</a></dfn> and <dfn><a href="http://www.microcontentnews.com/resources/glossary/blogrolling.htm" title="Hyperlink to a definition of the term 'blogrolling'">blogrolls</a></dfn> have become the fastest growing area of the Web.  XFN enables web authors to indicate their relationship(s) to the people in their blogrolls simply by adding a &#8216;<code>rel</code>&#8216; attribute to their <code title="hyperlink anchor">&lt;a href&gt;</code> tags, e.g.:
<pre><code>&lt;a href="http://jeff.example.org" <strong>rel="friend met"</strong>&gt;...</code></pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.twisty.com/bandwagon/archives/2003/12/16/002242/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (enhanced)

Served from: www.twisty.com @ 2012-02-08 14:04:52 -->
