Headings from h1 through h6 are constructed with a # for each level:
# h1 Heading
## h2 Heading
### h3 Heading| #include <stdio.h> | |
| #include <stdlib.h> | |
| /* read string from stdin */ | |
| char* readString(char end) { | |
| char* string = NULL; | |
| char value = '@'; | |
| int counter = 0; | |
| while (value != end) { |
| # Install ARCH Linux with encrypted file-system and UEFI | |
| # The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description. | |
| # Download the archiso image from https://www.archlinux.org/ | |
| # Copy to a usb-drive | |
| dd if=archlinux.img of=/dev/sdX bs=16M && sync # on linux | |
| # Boot from the usb. If the usb fails to boot, make sure that secure boot is disabled in the BIOS configuration. | |
| # Set swedish keymap |
| import urllib2 | |
| # Create dictionary | |
| words = [] | |
| for line in urllib2.urlopen("https://raw.githubusercontent.com/dolph/dictionary/master/enable1.txt"): | |
| words.append(line) |