Browse Source

Documentation in progress

01010101 10 years ago
parent
commit
c96dc92693
1 changed files with 5 additions and 0 deletions
  1. 5 0
      README.md

+ 5 - 0
README.md

@@ -178,6 +178,7 @@ Available special characters are :
 ### Text
 ### Text
 
 
 Write a text at the cursor position or at the given position (x,y)
 Write a text at the cursor position or at the given position (x,y)
+
 Text orientation can be horizontal (default) or vertical
 Text orientation can be horizontal (default) or vertical
 
 
 ```
 ```
@@ -211,7 +212,9 @@ When in graphic Mode, the Minitel can display graphic characters.
 Graphic characters are 2 columns by 3 rows.
 Graphic characters are 2 columns by 3 rows.
 
 
 |0|1|
 |0|1|
+-----
 |1|0|
 |1|0|
+-----
 |0|1|
 |0|1|
 
 
 You can display a graphic char at the cursor position or at a given position as follow:
 You can display a graphic char at the cursor position or at a given position as follow:
@@ -222,7 +225,9 @@ minitel.graphic("100110", 10, 10);
 ```
 ```
 
 
 The String content is split from top to bottom, left to right to fill the 2x3 pseudo-pixel grid. 
 The String content is split from top to bottom, left to right to fill the 2x3 pseudo-pixel grid. 
+
 Zeros will be filled with the current background color and other values with the current foreground color.
 Zeros will be filled with the current background color and other values with the current foreground color.
+
 The string has to be 6 characters
 The string has to be 6 characters
 
 
 For instance, "010101" will be split as
 For instance, "010101" will be split as