<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -88,4 +88,24 @@ square.
   
   square.mouseout(function() {
     console.log(&quot;out&quot;)
-  })
\ No newline at end of file
+  })
+  
+
+BASIC TEXT EXAMPLE
+-----------------------------------------------------------------------------
+
+Primer implements a basic version of Canvas' text api with standard DOM
+elements since no major browser release yet offers this. Let's draw the text
+&quot;Hello, World!&quot; in 12px Monaco in red at (0, 0) with a max width of 100px:
+
+  var text = Primer.Layer()
+  text.font = &quot;12px Monaco&quot;
+  text.fillStyle = &quot;#FF0000&quot;
+  text.textAlign = &quot;center&quot;
+  text.fillText(&quot;Hello, World!&quot;, 0, 0, 100)
+  
+The signature of fillText() is (text, x, y, width). The font attribute takes
+standard CSS font values.
+
+The text API currently does not support any transformations except
+translation. 
\ No newline at end of file</diff>
      <filename>README</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>966046c6259d89fe821fac577f4ad4581527f0d0</id>
    </parent>
  </parents>
  <author>
    <name>Tom Preston-Werner</name>
    <email>tom@mojombo.com</email>
  </author>
  <url>http://github.com/mojombo/primer/commit/6dece5175fea20bcd570250617c8b68af4aaaf12</url>
  <id>6dece5175fea20bcd570250617c8b68af4aaaf12</id>
  <committed-date>2008-10-24T17:51:44-07:00</committed-date>
  <authored-date>2008-10-24T17:51:44-07:00</authored-date>
  <message>update readme with text info</message>
  <tree>cdd163dc582233ea910ed8e317b1d095fc7ea51a</tree>
  <committer>
    <name>Tom Preston-Werner</name>
    <email>tom@mojombo.com</email>
  </committer>
</commit>
