···1515 if ["/proxy", "/proxy/", "/x", "/x/", "/raw", "/raw/", "/nocss", "/nocss/"]
1616 .contains(&http_request.path())
1717 {
1818- return Ok(
1919- HttpResponse::Ok()
1818+ return Ok(HttpResponse::Ok()
2019 .content_type("text/html")
2121- .body(r#"<pre>This is a proxy path. Please specify a Gemini URL without the "gemini://" to proxy.
2222-2323-For example: to proxy "gemini://fuwn.me/uptime", visit "/proxy/fuwn.me/uptime".</pre>"#),
2424- );
2020+ .body(r"<h1>September</h1>
2121+<p>This is a proxy path. Specify a Gemini URL without the protocol (<code>gemini://</code>) to proxy it.</p>
2222+<p>To proxy <code>gemini://fuwn.me/uptime</code>, visit <code>https://fuwn.me/proxy/fuwn.me/uptime</code>.</p>
2323+<p>Additionally, you may visit <code>/raw</code> to view the raw Gemini content, or <code>/nocss</code> to view the content without CSS.</p>
2424+ "));
2525 }
26262727 let mut configuration = configuration::Configuration::new();