This adds a bunch of tests to better exercise the HTML rendering and to be able to track any changes in its behavior. This includes a new `check_all_main_files` to more conveniently check the HTML content of every chapter in a book.
12 lines
No EOL
405 B
HTML
12 lines
No EOL
405 B
HTML
<h1 id="svg"><a class="header" href="#svg">SVG</a></h1>
|
|
<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> |