From b315f5e281e84606f431bde676e48e219456a3db Mon Sep 17 00:00:00 2001
From: sodoku <philip.d.stewart@gmail.com>
Date: Sat, 5 Oct 2019 15:50:15 +0200
Subject: [PATCH] Fix ascii art

---
 Documentation/pycardium/display.rst | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/Documentation/pycardium/display.rst b/Documentation/pycardium/display.rst
index 2fdbaf1ce..ab2ee8aed 100644
--- a/Documentation/pycardium/display.rst
+++ b/Documentation/pycardium/display.rst
@@ -4,14 +4,16 @@
 The display module let's you draw on the card10's display.
 Pixels are addressed from top left to bottom right with a range of x: 0 to 159 and y: 0 to 79.
 
-0,0
-   +---------------------+
-   |                     |
-   |                     |
-   |                     |
-   |                     |
-   +---------------------+
-                          159,79
+.. code-block:: text
+
+   0,0
+      +---------------------+
+      |                     |
+      |                     |
+      |                     |
+      |                     |
+      +---------------------+
+                           159,79
 
 Drawing operations are clipped, pixels outside of the screen will be ignored.
 
-- 
GitLab