Skip to content

Commit a136659

Browse files
committed
Bullets in bold
1 parent 7173257 commit a136659

File tree

1 file changed

+33
-33
lines changed

1 file changed

+33
-33
lines changed

README.md

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -354,15 +354,15 @@ Format
354354
```
355355

356356
#### Float presentation types:
357-
* `'f'` - Fixed point: `.<precision>f`
358-
* `'%'` - Percent: `.<precision>%`
359-
* `'e'` - Exponent
357+
* **`'f'` - Fixed point: `.<precision>f`**
358+
* **`'%'` - Percent: `.<precision>%`**
359+
* **`'e'` - Exponent**
360360

361361
#### Integer presentation types:
362-
* `'c'` - character
363-
* `'b'` - binary
364-
* `'x'` - hex
365-
* `'X'` - HEX
362+
* **`'c'` - character**
363+
* **`'b'` - binary**
364+
* **`'x'` - hex**
365+
* **`'X'` - HEX**
366366

367367

368368
Numbers
@@ -899,18 +899,18 @@ while True:
899899
* **`'t'` - Text mode (default).**
900900

901901
#### Newline - input:
902-
* `'None'` - Input is broken on `'\n'`, `'\r'` and `'\r\n'`. `'\r'` and `'\r\n'` are translated to `'\n'`.
903-
* `''` - Input is broken on `'\n'`, `'\r'` and `'\r\n'`.
904-
* `'\n'` - Input is broken on `'\n'`.
905-
* `'\r'` - Input is broken on `'\r'`.
906-
* `'\r\n'` - Input is broken on `'\r\n'`.
902+
* **`'None'` - Input is broken on `'\n'`, `'\r'` and `'\r\n'`. `'\r'` and `'\r\n'` are translated to `'\n'` (default).**
903+
* **`''` - Input is broken on `'\n'`, `'\r'` and `'\r\n'`.**
904+
* **`'\n'` - Input is broken on `'\n'`.**
905+
* **`'\r'` - Input is broken on `'\r'`.**
906+
* **`'\r\n'` - Input is broken on `'\r\n'`.**
907907

908908
#### Newline - output:
909-
* `'None'` - Any `'\n'` is translated to system default line separator.
910-
* `''` - No translation.
911-
* `'\n'` - No translation.
912-
* `'\r'` - Any `'\n'` is translated to `'\r'`.
913-
* `'\r\n'` - Any `'\n'` is translated to `'\r\n'`.
909+
* **`'None'` - Any `'\n'` is translated to system default line separator (default).**
910+
* **`''` - No translation.**
911+
* **`'\n'` - No translation.**
912+
* **`'\r'` - Any `'\n'` is translated to `'\r'`.**
913+
* **`'\r\n'` - Any `'\n'` is translated to `'\r\n'`.**
914914

915915
#### Read Text from File:
916916
```python
@@ -1104,19 +1104,19 @@ b'\x00\x01\x00\x02\x00\x00\x00\x03'
11041104

11051105
### Format
11061106
#### For standard sizes start format string with:
1107-
* `'='` - native byte order
1108-
* `'<'` - little-endian
1109-
* `'>'` - big-endian
1107+
* **`'='` - native byte order**
1108+
* **`'<'` - little-endian**
1109+
* **`'>'` - big-endian**
11101110

11111111
#### Use capital letter for unsigned type. Standard size in brackets:
1112-
* `'x'` - pad byte
1113-
* `'c'` - char (1)
1114-
* `'h'` - short (2)
1115-
* `'i'` - int (4)
1116-
* `'l'` - long (4)
1117-
* `'q'` - long long (8)
1118-
* `'f'` - float (4)
1119-
* `'d'` - double (8)
1112+
* **`'x'` - pad byte**
1113+
* **`'c'` - char (1)**
1114+
* **`'h'` - short (2)**
1115+
* **`'i'` - int (4)**
1116+
* **`'l'` - long (4)**
1117+
* **`'q'` - long long (8)**
1118+
* **`'f'` - float (4)**
1119+
* **`'d'` - double (8)**
11201120

11211121

11221122
Array
@@ -1561,11 +1561,11 @@ img.save('test.png')
15611561
```
15621562

15631563
### Modes
1564-
* `'1'` - 1-bit pixels, black and white, stored with one pixel per byte.
1565-
* `'L'` - 8-bit pixels, greyscale.
1566-
* `'RGB'` - 3x8-bit pixels, true color.
1567-
* `'RGBA'` - 4x8-bit pixels, true color with transparency mask.
1568-
* `'HSV'` - 3x8-bit pixels, Hue, Saturation, Value color space.
1564+
* **`'1'` - 1-bit pixels, black and white, stored with one pixel per byte.**
1565+
* **`'L'` - 8-bit pixels, greyscale.**
1566+
* **`'RGB'` - 3x8-bit pixels, true color.**
1567+
* **`'RGBA'` - 4x8-bit pixels, true color with transparency mask.**
1568+
* **`'HSV'` - 3x8-bit pixels, Hue, Saturation, Value color space.**
15691569

15701570

15711571
Audio

0 commit comments

Comments
 (0)