mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-10 02:25:56 +00:00
Serve shipped markdown docs as text instead of a forced download
The embedded frontend file server had no content type for .md, so every in-app "Full details" / "Terms of Service" / security-guide link to /docs/*.md answered application/octet-stream and the browser downloaded the file instead of showing it. Shipped docs now serve as text/plain; charset=utf-8 and open readable in the tab the app targets.
This commit is contained in:
@@ -262,6 +262,11 @@ func serveFrontendHandler() http.HandlerFunc {
|
||||
contentType = "application/json"
|
||||
} else if strings.HasSuffix(lookupPath, ".svg") {
|
||||
contentType = "image/svg+xml"
|
||||
} else if strings.HasSuffix(lookupPath, ".md") {
|
||||
// Shipped docs (/docs/*.md) open in a browser tab from
|
||||
// in-app links; text/plain renders them readable instead
|
||||
// of forcing a download.
|
||||
contentType = "text/plain; charset=utf-8"
|
||||
}
|
||||
|
||||
w.Header().Set("Content-Type", contentType)
|
||||
|
||||
Reference in New Issue
Block a user