Change the CSS to allow the browser to break words and wrap lines in

pre/tt blocks, so that it doesn't overflow the body size, which the
android chrome browser handles by making the text very small.
master
Greg Alexander 3 years ago
parent 6c6a885cb0
commit 3a54cf8be7

@ -2,7 +2,13 @@
<meta name="HandheldFriendly" content="true"/>
<style type="text/css">
pre {
margin-left: 1em;
margin-left: 1em;
white-space: pre-wrap;
word-wrap: break-word;
}
tt {
white-space: pre-wrap;
word-wrap: break-word;
}
</style>
</head>
@ -116,7 +122,7 @@ commandline.</dd>
shell. There is one variable per line, with a
"<em>name</em><tt>=</tt><em>value</em>" format.
A common use would be
"<tt>ENV=>/data/data/org.galexander.sshd/files/.profile</tt>",
"<tt>ENV=/data/data/org.galexander.sshd/files/.profile</tt>",
if your device has a
build of <tt>mksh</tt> that does not execute a <tt>.profile</tt>
automatically.</dd>

Loading…
Cancel
Save