Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Python syntax highlighting in README.md code blocks #30

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,9 @@ If you wish to use this package as a dependency in your own project, simply run:
via the command prompt in your project's directory. Then, in a script that you'd like
to use features from Ptera Software, add:

```import pterasoftware as ps```
```python
import pterasoftware as ps
```

If you haven't previously downloaded Ptera Software's source code, you can also learn
about the available functions by reading their docstrings, which should be fetched
Expand All @@ -160,7 +162,7 @@ an issue for guidance.
The following code snippet is all that is needed (after running pip install
pterasoftware) to run the steady horseshoe solver on an airplane with custom geometry.

```
```python
import pterasoftware as ps

airplane = ps.geometry.Airplane(
Expand Down