Cristian Ionescu-Idbohrn writes:
force enough space padding so that applet names always end up on their own line
diff --git a/docs/autodocifier.pl b/docs/autodocifier.pl
index 3a29512..fa8c4c0 100755
--- a/docs/autodocifier.pl
+++ b/docs/autodocifier.pl
@@ -87,6 +87,13 @@
 			split("\n", $usage->{example})) . "\n\n"
 		: "";
 
+	# Pad the name so that the applet name gets a line
+	# by itself in BusyBox.txt
+	my $spaces = 10 - length($name);
+	if ($spaces > 0) {
+		$name .= " " x $spaces;
+	}
+
 	return
 		"=item B<$name>".
 		"\n\n$name $trivial\n\n".