From 5c0f9babf1da6931486faefbc47232c8c4e2b5fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Solt=20Budav=C3=A1ri?= Date: Thu, 8 Apr 2021 01:32:56 +0000 Subject: [PATCH] Properly divide list "headers" and lists. (#4) Since the feature (and security and limitations) list follows the "Features:" (etc.) line without any empty lines between them, some Markdown-to-HTML converters (correctly) assume that they are one paragraph, which causes the list not to be converted to an actual HTML list. By putting an empty line between the actual lists and their preceding lines, the lists will be correctly converted. (Both lists and paragraphs are block elements, and they should be "marked down" accordingly. See https://daringfireball.net/projects/markdown/syntax#block .) --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 8cd2ef4..d6654ab 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ https://unix4lyfe.org/darkhttpd/ When you need a web server in a hurry. Features: + * Simple to set up: * Single binary, no other files, no installation needed. * Standalone, doesn't need `inetd` or `ucspi-tcp`. @@ -27,6 +28,7 @@ Features: * Small Docker image (<100KB) Security: + * Can log accesses, including Referer and User-Agent. * Can chroot. * Can drop privileges. @@ -35,6 +37,7 @@ Security: * Drops overly long requests. Limitations: + * Only serves static content - no CGI. ## How to build darkhttpd