diff options
author | David Thompson <dthompson2@worcester.edu> | 2021-12-13 09:55:26 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2021-12-13 09:55:26 -0500 |
commit | 2e1377c06cf741b4e618c186a4fa8af9c33f319a (patch) | |
tree | 469e59ad74e91bd243f6cd2f210e0bb7614dc7c2 | |
parent | 1d1d6ccae479193619c11a65f399298bbca05c25 (diff) |
Update Haunt manual.
28 files changed, 668 insertions, 18 deletions
diff --git a/manuals/haunt/Assets.html b/manuals/haunt/Assets.html index 6e4464d..8c2489e 100644 --- a/manuals/haunt/Assets.html +++ b/manuals/haunt/Assets.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Atom.html b/manuals/haunt/Atom.html index f627d9e..a2d5eb7 100644 --- a/manuals/haunt/Atom.html +++ b/manuals/haunt/Atom.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Blog.html b/manuals/haunt/Blog.html index 681860b..48fcc33 100644 --- a/manuals/haunt/Blog.html +++ b/manuals/haunt/Blog.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Builders.html b/manuals/haunt/Builders.html index 3e55d5d..00a6501 100644 --- a/manuals/haunt/Builders.html +++ b/manuals/haunt/Builders.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Building.html b/manuals/haunt/Building.html index 096a619..6ff3861 100644 --- a/manuals/haunt/Building.html +++ b/manuals/haunt/Building.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> @@ -64,6 +87,26 @@ make make install </pre></div> +<p>This will install Haunt to <samp>/usr/local/</samp>. This is not part of +the default load path for GNU Guile if you installed it from your +distribution’s package manager (<samp>/usr</samp> is.) You may choose to +change the prefix to your GNU Guile’s location with <code>./configure +--prefix=/usr</code> or add <samp>/usr/local/</samp> to GNU Guile’s load path in +your shell environment like this (replacing 3.0 with your GNU Guile +version): +</p> +<div class="example"> +<pre class="example">export GUILE_LOAD_PATH="/usr/local/share/guile/site/3.0\ +${GUILE_LOAD_PATH:+:}$GUILE_LOAD_PATH" + +export GUILE_LOAD_COMPILED_PATH="/usr/local/lib/guile/3.0/site-ccache\ +${GUILE_LOAD_COMPILED_PATH:+:}$GUILE_COMPILED_LOAD_PATH" +</pre></div> + +<p>(see <a href="https://www.gnu.org/software/guile/manual/html_node/Environment-Variables.html#Environment-Variables">Environment Variables</a> in <cite>GNU +Guile Reference Manual</cite> for more details on <code>GUILE_LOAD_PATH</code> and +<code>GUILE_LOAD_COMPILED_PATH</code>.) +</p> diff --git a/manuals/haunt/Command_002dline-Interface.html b/manuals/haunt/Command_002dline-Interface.html index 125bc5d..ad694d5 100644 --- a/manuals/haunt/Command_002dline-Interface.html +++ b/manuals/haunt/Command_002dline-Interface.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/CommonMark.html b/manuals/haunt/CommonMark.html index a5a6b11..a0eadf7 100644 --- a/manuals/haunt/CommonMark.html +++ b/manuals/haunt/CommonMark.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Concept-Index.html b/manuals/haunt/Concept-Index.html index 75a1a86..066c04a 100644 --- a/manuals/haunt/Concept-Index.html +++ b/manuals/haunt/Concept-Index.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Contributing.html b/manuals/haunt/Contributing.html index 9d8475c..9890fa5 100644 --- a/manuals/haunt/Contributing.html +++ b/manuals/haunt/Contributing.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> @@ -55,6 +78,8 @@ Next: <a href="GNU-Free-Documentation-License.html" accesskey="n" rel="next">GNU <hr> <span id="Contributing-1"></span><h2 class="chapter">6 Contributing</h2> +<p>Send patches and bug reports to <a href="mailto:davet@gnu.org">davet@gnu.org</a>. +</p> diff --git a/manuals/haunt/Downloading.html b/manuals/haunt/Downloading.html index 6c88cad..ec376c7 100644 --- a/manuals/haunt/Downloading.html +++ b/manuals/haunt/Downloading.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/GNU-Free-Documentation-License.html b/manuals/haunt/GNU-Free-Documentation-License.html index 7acef91..8d7eef2 100644 --- a/manuals/haunt/GNU-Free-Documentation-License.html +++ b/manuals/haunt/GNU-Free-Documentation-License.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Installation.html b/manuals/haunt/Installation.html index 8a9170a..c1cb5fa 100644 --- a/manuals/haunt/Installation.html +++ b/manuals/haunt/Installation.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Introduction.html b/manuals/haunt/Introduction.html index 928da25..77cd376 100644 --- a/manuals/haunt/Introduction.html +++ b/manuals/haunt/Introduction.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Invoking-haunt-build.html b/manuals/haunt/Invoking-haunt-build.html index 4b624bd..bb98467 100644 --- a/manuals/haunt/Invoking-haunt-build.html +++ b/manuals/haunt/Invoking-haunt-build.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Invoking-haunt-serve.html b/manuals/haunt/Invoking-haunt-serve.html index 43a3575..50e7f94 100644 --- a/manuals/haunt/Invoking-haunt-serve.html +++ b/manuals/haunt/Invoking-haunt-serve.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Pages.html b/manuals/haunt/Pages.html index 84ca6cf..2620c28 100644 --- a/manuals/haunt/Pages.html +++ b/manuals/haunt/Pages.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Posts.html b/manuals/haunt/Posts.html index 366a93d..8a78174 100644 --- a/manuals/haunt/Posts.html +++ b/manuals/haunt/Posts.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Programming-Index.html b/manuals/haunt/Programming-Index.html index b156323..21b1ff1 100644 --- a/manuals/haunt/Programming-Index.html +++ b/manuals/haunt/Programming-Index.html @@ -40,8 +40,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Programming-Interface.html b/manuals/haunt/Programming-Interface.html index 7a9eadc..9a00603 100644 --- a/manuals/haunt/Programming-Interface.html +++ b/manuals/haunt/Programming-Interface.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Reader.html b/manuals/haunt/Reader.html index e33bd78..3970c54 100644 --- a/manuals/haunt/Reader.html +++ b/manuals/haunt/Reader.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Readers.html b/manuals/haunt/Readers.html index ad42e0c..77db148 100644 --- a/manuals/haunt/Readers.html +++ b/manuals/haunt/Readers.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Requirements.html b/manuals/haunt/Requirements.html index 1ec31c9..b5f903e 100644 --- a/manuals/haunt/Requirements.html +++ b/manuals/haunt/Requirements.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Sites.html b/manuals/haunt/Sites.html index ddc1fc3..e54d9b1 100644 --- a/manuals/haunt/Sites.html +++ b/manuals/haunt/Sites.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Skribe.html b/manuals/haunt/Skribe.html index b11c0d1..a2f41f2 100644 --- a/manuals/haunt/Skribe.html +++ b/manuals/haunt/Skribe.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Static-Assets.html b/manuals/haunt/Static-Assets.html index 20e599f..9478563 100644 --- a/manuals/haunt/Static-Assets.html +++ b/manuals/haunt/Static-Assets.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Texinfo.html b/manuals/haunt/Texinfo.html index d8fa268..3dec8e7 100644 --- a/manuals/haunt/Texinfo.html +++ b/manuals/haunt/Texinfo.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/Tutorial.html b/manuals/haunt/Tutorial.html index 4e232e9..8153a85 100644 --- a/manuals/haunt/Tutorial.html +++ b/manuals/haunt/Tutorial.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> diff --git a/manuals/haunt/index.html b/manuals/haunt/index.html index 03f4be8..c7a4b25 100644 --- a/manuals/haunt/index.html +++ b/manuals/haunt/index.html @@ -39,8 +39,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> @@ -122,29 +145,13 @@ functional static site generator. </td></tr> <tr><td align="left" valign="top">• <a href="Contributing.html" accesskey="6">Contributing</a></td><td> </td><td align="left" valign="top">How to contribute to Haunt. </td></tr> -<tr><th colspan="3" align="left" valign="top"><pre class="menu-comment"> - -</pre></th></tr><tr><td align="left" valign="top">• <a href="GNU-Free-Documentation-License.html" accesskey="7">GNU Free Documentation License</a></td><td> </td><td align="left" valign="top">The license of this manual. +<tr><td align="left" valign="top">• <a href="GNU-Free-Documentation-License.html" accesskey="7">GNU Free Documentation License</a></td><td> </td><td align="left" valign="top">The license of this manual. </td></tr> <tr><td align="left" valign="top">• <a href="Concept-Index.html" rel="index" accesskey="8">Concept Index</a></td><td> </td><td align="left" valign="top">Concepts. </td></tr> <tr><td align="left" valign="top">• <a href="Programming-Index.html" rel="index" accesskey="9">Programming Index</a></td><td> </td><td align="left" valign="top">Data types, procedures, syntax, and variables. </td></tr> -<tr><th colspan="3" align="left" valign="top"><pre class="menu-comment"> - -</pre></th></tr><tr><th colspan="3" align="left" valign="top"><pre class="menu-comment"> — The Detailed Node Listing — - -Installation - -</pre></th></tr><tr><td align="left" valign="top">• <a href="Downloading.html">Downloading</a></td><td> </td><td align="left" valign="top">Downloading the source code. -</td></tr> -<tr><td align="left" valign="top">• <a href="Requirements.html">Requirements</a></td><td> </td><td align="left" valign="top">Software needed to build and run Haunt. -</td></tr> -<tr><td align="left" valign="top">• <a href="Building.html">Building</a></td><td> </td><td align="left" valign="top">Building from source code. -</td></tr> -<tr><th colspan="3" align="left" valign="top"><pre class="menu-comment"> - -</pre></th></tr></table> +</table> <hr> <div class="header"> |