commit 08f54f9f831ae83ae88f35d36879463e7adb905e
Author: Laslo Hunhold <[email protected]>
Date:   Wed Aug 2 21:23:23 2017 +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.

diff --git a/tools.suckless.org/farbfeld/index.md 
b/tools.suckless.org/farbfeld/index.md
index cc9075ac..9e1e0c84 100644
--- 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.


Reply via email to