From 397b440bb226706ec530ae0895cb33c6a2b9f653 Mon Sep 17 00:00:00 2001 From: Horcrux Date: Wed, 27 Jan 2016 14:03:41 +0800 Subject: [PATCH] add line break --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e5ad5b89..bc8abd3a 100644 --- a/README.md +++ b/README.md @@ -181,7 +181,7 @@ The element is used to create a circle: ##### Ellipse -The element is used to create an ellipse. +The element is used to create an ellipse. An ellipse is closely related to a circle. The difference is that an ellipse has an x and a y radius that differs from each other, while a circle has equal x and y radius @@ -389,7 +389,8 @@ The element is a container used to group other SVG elements. Transformations
Use
-The element can reuse an SVG shape from elsewhere in the SVG document, including elements and elements. The reused shape can be defined inside the [<Defs>](#defs) element (which makes the shape invisible until used) or outside. +The element can reuse an SVG shape from elsewhere in the SVG document, including elements and elements. +The reused shape can be defined inside the [<Defs>](#defs) element (which makes the shape invisible until used) or outside. ``` element can reuse an SVG shape from elsewhere in the SVG document, inc This example shows a element defined inside a [<Defs>](#defs) element. This makes the invisible unless referenced by a element. -Before the element can be referenced, it must have an ID set on it via its id attribute. The element references the element via its href prop. Notice the # in front of the ID in the prop value. +Before the element can be referenced, it must have an ID set on it via its id attribute. The element references the element via its `href` prop. Notice the # in front of the ID in the prop value. The element specifies where to show the reused shapes via its x and y props. Notice that the shapes inside the element are located at 0,0. That is done because their position is added to the position specified in the element.