sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

commit 08f54f9f831ae83ae88f35d36879463e7adb905e
parent 0dcdf928bca09f1d0f0dc80076ec0aa8565c58ab
Author: Laslo Hunhold <dev@frign.de>
Date:   Wed,  2 Aug 2017 21:23:23 +0200

Use plain text table on farbfeld index.md

This is the only place on the entire website where we are using
markdown's table feature. Let's get rid of that so we can simplify the
process in the future and maybe switch to a leaner, more basic md
implementation.

Diffstat:
Mtools.suckless.org/farbfeld/index.md | 17+++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/tools.suckless.org/farbfeld/index.md b/tools.suckless.org/farbfeld/index.md @@ -4,12 +4,17 @@ farbfeld is a lossless image format which is easy to parse, pipe and compress. It has the following format: -| Bytes | Description | -|--------|---------------------------------------------------------| -| 8 | "farbfeld" magic value | -| 4 | 32-Bit BE unsigned integer (width) | -| 4 | 32-Bit BE unsigned integer (height) | -| [2222] | 4⋅16-Bit BE unsigned integers [RGBA] / pixel, row-major | + ╔════════╤═════════════════════════════════════════════════════════╗ + ║ Bytes │ Description ║ + ╠════════╪═════════════════════════════════════════════════════════╣ + ║ 8 │ "farbfeld" magic value ║ + ╟────────┼─────────────────────────────────────────────────────────╢ + ║ 4 │ 32-Bit BE unsigned integer (width) ║ + ╟────────┼─────────────────────────────────────────────────────────╢ + ║ 4 │ 32-Bit BE unsigned integer (height) ║ + ╟────────┼─────────────────────────────────────────────────────────╢ + ║ [2222] │ 4⋅16-Bit BE unsigned integers [RGBA] / pixel, row-major ║ + ╚════════╧═════════════════════════════════════════════════════════╝ The RGB-data should be sRGB for best interoperability and not alpha-premultiplied.