Skip to content

Commit 5d981fd

Browse files
committed
README : fixed pre-formatted text
1 parent 92d1d8b commit 5d981fd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@ Inspired by Pydantic's boolean, Booleanify is a Python package that provides a s
66

77
You can install Booleanify using pip:
88

9-
\`\`\`bash
9+
```bash
1010
pip install booleanify
11-
\`\`\`
11+
```
1212

1313
## Usage
1414

15-
To use Booleanify in your Python code, simply import the \`booleanify\` function and pass a string representing a boolean value to it. The function will return the corresponding boolean value.
15+
To use Booleanify in your Python code, simply import the `booleanify` function and pass a string representing a boolean value to it. The function will return the corresponding boolean value.
1616

17-
\`\`\`python
17+
```python
1818
from booleanify import booleanify
1919

2020
result = booleanify("T")
2121
print(result) # Output: True
2222

2323
result = booleanify("false")
2424
print(result) # Output: False
25-
\`\`\`
25+
```
2626

2727
Booleanify supports the following string representations for boolean values:
2828

0 commit comments

Comments
 (0)