@@ -99,7 +99,7 @@ More information about the internals of the `Asynchronous Servers`_ can be found
9999in the following section.
100100
101101Synchronous Servers
102- ~~~~~~~~~~~~~~~~~~~
102+ -------------------
103103
104104The synchronous server implementation is represented by the template ``server ``
105105in namespace ``boost::network::http ``. The ``server `` template takes in a single
@@ -140,7 +140,7 @@ application, which means you can expose almost all your application logic
140140through the Handler type, which you can also initialize appropriately.
141141
142142API Documentation
143- `````````````````
143+ ~~~~~~~~~~~~~~~~~
144144
145145The following sections assume that the following file has been included:
146146
@@ -156,15 +156,15 @@ And that the following typedef's have been put in place:
156156 typedef boost::network::http: :server<handler_type> http_server;
157157
158158Constructor
159- ***********
159+ ```````````
160160
161161``http_server(address, port, handler) ``
162162 Construct an HTTP Server instance, passing in the address and port as
163163 ``std::string const & `` and handler being of type ``handler_type `` but
164164 passed in as an lvalue reference.
165165
166166Public Members
167- **************
167+ ``````````````
168168
169169The following definitions assume that a properly constructed ``http_server ``
170170instance has been constructed in the following manner:
@@ -188,12 +188,12 @@ instance has been constructed in the following manner:
188188 Stop the HTTP Server acceptor and wait for all pending requests to finish.
189189
190190Asynchronous Servers
191- ~~~~~~~~~~~~~~~~~~~~
191+ --------------------
192192
193193.. FIXME show the table of tags that enable the asynchronous implementation.
194194
195195 API Documentation
196- `````````````````
196+ ~~~~~~~~~~~~~~~~~
197197
198198.. FIXME show the table of publicly-accessible member functions.
199199