{{code "doc/articles/wiki/part2.go" `/^func viewHandler/` `/^}/`}}
+<p>
+Again, note the use of <code>_</code> to ignore the <code>error</code>
+return value from <code>loadPage</code>. This is done here for simplicity
+and generally considered bad practice. We will attend to this later.
+</p>
+
<p>
First, this function extracts the page title from <code>r.URL.Path</code>,
the path component of the request URL.
HTML, and writes it to <code>w</code>, the <code>http.ResponseWriter</code>.
</p>
-<p>
-Again, note the use of <code>_</code> to ignore the <code>error</code>
-return value from <code>loadPage</code>. This is done here for simplicity
-and generally considered bad practice. We will attend to this later.
-</p>
-
<p>
To use this handler, we rewrite our <code>main</code> function to
initialize <code>http</code> using the <code>viewHandler</code> to handle