summaryrefslogtreecommitdiff
path: root/README.md
blob: 78663d2d55f8cad6db3e39b90d8ed9b0636eed3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# LandChad.net ([https://landchad.net](https://landchad.net))

A site dedicated to turn web peasants into Internet LandChads.

Simple step-by-step text and image-based tutorials for creating websites, email servers, chat servers, server administration and everything else.

Suggestions welcome.

## Submission guidelines

- follow the general style of pre-existing articles
- use the root user (i.e. no `sudo`) unless there is a specific need.
- do not preface commands with `$` or `#` or anything.
- use `.svg` files for icons/logos and for illustrative images, keep filesize low
- Use `example.org`
- custom command/file info should be highlighted with `<strong>` tags

### On `<pre>` tags


In-line code should be in `<code>` tags, while codeblocks should be in a `<code>` tag *inside* of a `<pre>` tag.
`<pre>` allows formatting preserving whitespace.
That said, do *not* format `<pre>` tags as following:

```
<pre><code>
	echo "Here is a command."
	echo "Here is another."
</code></pre>
```

but do it like this:

```
<pre><code>echo "Here is a command."
echo "Here is another."</code></pre>
```

**All** whitespace, including tabbing in and initial and final newlines are displayed by `<pre>`.
To maintain consistency and avoid goofy-looking extra lines, add no extra whitespace.