mdbook 0.5.2

Creates a book from markdown files
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SVG

<svg version="1.1" width="300" height="200" xmlns="http://www.w3.org/2000/svg">
<style>
    rect {
        stroke: green;
        stroke-width: 10px;
    }
</style>
<rect width="100%" height="100%" fill="red" />
<circle cx="150" cy="100" r="80" fill="green" />
<text x="150" y="125" font-size="60" text-anchor="middle" fill="white">SVG</text>
</svg>