]> source.dussan.org Git - svg.js.git/commitdiff
Updated README on image
authorwout <wout@impinc.co.uk>
Thu, 27 Dec 2012 23:25:50 +0000 (00:25 +0100)
committerwout <wout@impinc.co.uk>
Thu, 27 Dec 2012 23:25:50 +0000 (00:25 +0100)
README.md

index a7b768da48c1157d8a2da89be439e7c7fc929820..6952164177f5dca0790c3efb1faad4f5fb644261 100644 (file)
--- a/README.md
+++ b/README.md
@@ -77,7 +77,8 @@ text.font({
 
 
 ### Image
-When creating images the width and height values should be defined:
+When creating images the `width` and `height` values should be defined:
+
 ```javascript
 // image(src, width, height)
 var image = draw.image('/path/to/image.jpg', 200, 200).move(100, 100);
@@ -86,6 +87,7 @@ var image = draw.image('/path/to/image.jpg', 200, 200).move(100, 100);
 
 ### Path
 Pass the path string as the first argument:
+
 ```javascript
 var path = draw.path('M10,20L30,40').attr({ fill: '#9dffd3' });
 ```