more documentation

This commit is contained in:
Niels 2015-06-22 21:44:20 +02:00
parent 27b0a4d170
commit 844bfd39b5
10 changed files with 238 additions and 48 deletions

View file

@ -1,7 +1,14 @@
.memtemplate {
/* hide lengthy template information */
.memtemplate, .memTemplParams {
display: none;
}
.memTemplParams {
display: none;
/* allow compiler information to wrap */
/* https://css-tricks.com/snippets/css/make-pre-text-wrap/ */
pre.fragment {
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}