diff options
-rw-r--r-- | .md/about/whyami.md | 2 | ||||
-rw-r--r-- | about/whyami.html | 2 | ||||
-rwxr-xr-x | panupdate | 2 | ||||
-rw-r--r-- | tutorials/how-to-make-this-site.html | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/.md/about/whyami.md b/.md/about/whyami.md index ea23b63..5301dc9 100644 --- a/.md/about/whyami.md +++ b/.md/about/whyami.md @@ -1,4 +1,4 @@ <center> -We are here on Earth to fart around. Don’t let anybody tell you any +We are here on Earth to fart around. Don't let anybody tell you any different. -- *Kurt Vonnegut, from A man without a country.* </center> diff --git a/about/whyami.html b/about/whyami.html index 46cd572..0f52b69 100644 --- a/about/whyami.html +++ b/about/whyami.html @@ -1,3 +1,3 @@ <center> -We are here on Earth to fart around. Don’t let anybody tell you any different. -- <em>Kurt Vonnegut, from A man without a country.</em> +We are here on Earth to fart around. Don't let anybody tell you any different. -- <em>Kurt Vonnegut, from A man without a country.</em> </center> @@ -8,7 +8,7 @@ do then newfile=$(sed "s/\.md\///; s/md/html/" <<< $file) echo "Saved "$file" to "$newfile - pandoc -f markdown-smart $file -t html -o $newfile + pandoc --ascii -f markdown-smart $file -t html -o $newfile fi done done diff --git a/tutorials/how-to-make-this-site.html b/tutorials/how-to-make-this-site.html index 112bbe2..8469fbd 100644 --- a/tutorials/how-to-make-this-site.html +++ b/tutorials/how-to-make-this-site.html @@ -16,7 +16,7 @@ <p>Because of that, I think it's important to understand that "running your own website" is not just a <em>technical</em> ordeal, but also an <em>economic</em> one since you have to carefully think about what it means to you to <em>own</em> your server, your software, and your hardware. That doesn't mean it's hard to do, just that there's options.</p> <p><a id="thepoint"></a> ## What is a web server and how do I run one? <em>TL;DR a web server is just a program that lets other computers on a network view files in a chosen folder. All you need to do is download a web server: apache and nginx are popular ones, but you can easily program your own with web frameworks like <a href="https://flask.palletsprojects.com/en/2.0.x/">Flask</a> or <a href="https://facil.io/">Facil</a></em></p> <p>You can run a web server for free right now. If you're on windows go download Apache for Windows <a href="https://httpd.apache.org/docs/current/platform/windows.html">here</a> and follow the set up guide <a href="https://www.liquidweb.com/kb/how-to-install-apache-on-a-windows-server/">here</a>. If you're on Linux, you probably already have it installed.</p> -<p>Find the configuration file in <code>sites-available/default</code> (on windows, this may be led by C:FilesSoftware Foundation ). You'll see something like the following:</p> +<p>Find the configuration file in <code>sites-available/default</code> (on windows, this may be led by C:FilesSoftware Foundation ). You'll see something like the following:</p> <pre><code><VirtualHost *:80> ServerAdmin webmaster@localhost |